/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&family=Roboto+Mono:wght@300;400;500;600;700&display=swap');

/* Theme Variables */
:root {
    --accent-color: #00ff00;
    --accent-color-dim: #00cc00;
    --accent-color-05: rgba(0, 255, 0, 0.05);
    --accent-color-08: rgba(0, 255, 0, 0.08);
    --accent-color-10: rgba(0, 255, 0, 0.1);
    --accent-color-15: rgba(0, 255, 0, 0.15);
    --accent-color-20: rgba(0, 255, 0, 0.2);
    --accent-color-30: rgba(0, 255, 0, 0.3);
    --accent-color-40: rgba(0, 255, 0, 0.4);
    --accent-color-50: rgba(0, 255, 0, 0.5);
    --accent-color-60: rgba(0, 255, 0, 0.6);
    --accent-color-70: rgba(0, 255, 0, 0.7);
    
    /* Typography */
    --font-display: 'Jersey 10', 'Courier New', monospace;
    --font-body: 'Roboto Mono', 'Courier New', monospace;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--accent-color);
    background-color: #000000;
    min-height: 100%;
}

/* Headings and Display Text */
h1, h2, .nav-brand {
    font-family: var(--font-display);
    font-weight: 400;
}

/* Form Elements - Explicit Roboto Mono */
input, select, textarea, button {
    font-family: var(--font-body);
}

/* Navigation */
.navbar {
    background: #1a1a1a;
    color: var(--accent-color);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px var(--accent-color-20);
    border-bottom: 2px solid var(--accent-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Use full width for nav on large screens but keep comfortable side padding */
.nav-container {
    width: 100%;
    max-width: none;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
} 

.nav-brand {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-decoration: none;
    text-shadow: 0 0 10px var(--accent-color-50);
    flex-shrink: 0;
}

/* Center section containing search + main nav links */
.nav-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    max-width: 1200px;
}

/* Main navigation links (Tools, Portfolio, Markets, More) */
.nav-main-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-main-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-main-links a:hover {
    color: var(--accent-color-dim);
    text-shadow: 0 0 10px var(--accent-color-70);
}

/* Profile section on the right */
.nav-profile {
    flex-shrink: 0;
}

.nav-profile a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-profile a:hover {
    color: var(--accent-color-dim);
    text-shadow: 0 0 10px var(--accent-color-70);
}

/* Legacy nav-links support (if still used anywhere) */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color-dim);
    text-shadow: 0 0 10px var(--accent-color-70);
}

.nav-links .logout-link {
    padding: 0.5rem 1rem;
    background: var(--accent-color-10);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
}

.nav-links .logout-link:hover {
    background: var(--accent-color-20);
    box-shadow: 0 0 10px var(--accent-color-30);
}

/* Dropdown Navigation */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-top: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--accent-color-20);
    z-index: 1000;
    margin-top: 1.4rem;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(3px);
}

/* Align dropdown to the right for Profile only */
.nav-profile .dropdown {
    left: auto;
    right: -20px;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--accent-color-10);
}

.dropdown a:hover {
    background: var(--accent-color-10);
    padding-left: 1.5rem;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown-category {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-color-05);
    border-bottom: 1px solid var(--accent-color-20);
    cursor: default;
}

.dropdown-item-indent {
    padding-left: 2rem;
    font-size: 0.95rem;
}

.dropdown-item-indent:hover {
    padding-left: 2.5rem;
    background: var(--accent-color-10);
}

/* Nav Search Bar */
.nav-search-container {
    position: relative;
    width: 320px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Expand search bar when focused */
.nav-search-container:focus-within {
    width: 610px;
}

.nav-search-label {
    background: var(--accent-color);
    color: #0d0d0d;
    font-weight: 600;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    border-radius: 5px 0 0 5px;
    border: 1px solid var(--accent-color);
    border-right: none;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.nav-search-input {
    flex: 1;
    padding: 0.6rem 1rem;
    background: #0d0d0d;
    border: 1px solid var(--accent-color);
    border-radius: 0 5px 5px 0;
    color: var(--accent-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-search-input:focus {
    outline: none;
    box-shadow: 0 0 15px var(--accent-color-40);
    background: #111111;
    border-color: var(--accent-color);
}

.nav-search-input::placeholder {
    color: var(--accent-color-dim);
    opacity: 0.6;
}

.nav-search-results {
    position: absolute;
    top: 100%;
    left: 88px;
    right: 0;
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    margin-top: -2px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 10px var(--accent-color-20);
}

.nav-search-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color-10);
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-search-item:hover {
    background: var(--accent-color-10);
    padding-left: 1.5rem;
}

.nav-search-item:last-child {
    border-bottom: none;
}

.nav-search-item.no-results {
    cursor: default;
    color: #999;
    justify-content: center;
}

.nav-search-item.no-results:hover {
    background: transparent;
    padding-left: 1rem;
}

.nav-search-symbol {
    font-weight: 700;
    font-size: 1rem;
    min-width: 80px;
}

.nav-search-name {
    flex: 1;
    font-size: 0.9rem;
    color: #cccccc;
    text-align: left;
    padding-left: 1rem;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0;
    margin: 0;
    padding-top: 2rem;
    overflow-y: auto;
}

/* Hero Section */
.hero-section {
    background: #0d0d0d;
    color: var(--accent-color);
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 35px;
    position: relative;
    overflow: hidden;
}

/* Wind flecks animations - multiple speeds for depth */
@keyframes windDriftFast {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        transform: translateX(-100vw);
        opacity: 0;
    }
}

@keyframes windDriftMedium {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(-100vw);
        opacity: 0;
    }
}

@keyframes windDriftSlow {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(-100vw);
        opacity: 0;
    }
}

/* Fast bright flecks (foreground) */
.hero-section .flecks-fast {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent);
    background-position: 
        12% 18%, 33% 12%, 51% 22%, 73% 15%, 
        19% 33%, 44% 28%, 64% 35%, 85% 27%,
        8% 48%, 39% 45%, 61% 50%, 88% 53%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    animation: windDriftFast 10s linear infinite;
    z-index: 3;
    pointer-events: none;
}

/* Fast bright flecks - second layer for continuous flow */
.hero-section .flecks-fast-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-70), transparent),
        radial-gradient(circle 9px, var(--accent-color-60), transparent);
    background-position: 
        12% 18%, 33% 12%, 51% 22%, 73% 15%, 
        19% 33%, 44% 28%, 64% 35%, 85% 27%,
        8% 48%, 39% 45%, 61% 50%, 88% 53%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    animation: windDriftFast 10s linear infinite -5s;
    z-index: 3;
    pointer-events: none;
}

/* Medium brightness flecks (midground) */
.hero-section .flecks-medium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: 
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent);
    background-position: 
        6% 14%, 25% 20%, 42% 16%, 58% 23%, 78% 19%,
        15% 36%, 35% 40%, 55% 33%, 74% 43%,
        10% 56%, 30% 50%, 50% 58%, 70% 53%,
        22% 66%, 48% 63%, 72% 68%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    animation: windDriftMedium 25s linear infinite;
    z-index: 2;
    pointer-events: none;
}

/* Medium brightness flecks - second layer for continuous flow */
.hero-section .flecks-medium-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: 
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent),
        radial-gradient(circle 6px, var(--accent-color-60), transparent),
        radial-gradient(circle 6px, var(--accent-color-50), transparent);
    background-position: 
        6% 14%, 25% 20%, 42% 16%, 58% 23%, 78% 19%,
        15% 36%, 35% 40%, 55% 33%, 74% 43%,
        10% 56%, 30% 50%, 50% 58%, 70% 53%,
        22% 66%, 48% 63%, 72% 68%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
    animation: windDriftMedium 25s linear infinite -12.5s;
    z-index: 2;
    pointer-events: none;
}

/* Slow dull flecks (background) - separate container */
.hero-section .flecks-slow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: 
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent);
    background-position: 
        3% 11%, 18% 16%, 37% 10%, 52% 20%, 67% 13%,
        82% 23%, 7% 32%, 27% 37%, 47% 30%, 62% 42%,
        77% 36%, 13% 47%, 32% 52%, 52% 46%, 72% 50%,
        87% 55%, 5% 62%, 26% 67%, 45% 60%, 65% 65%;
    background-size: 4px 4px;
    background-repeat: no-repeat;
    animation: windDriftSlow 45s linear infinite;
    z-index: 1;
    pointer-events: none;
}

/* Slow dull flecks - second layer for continuous flow */
.hero-section .flecks-slow-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: 
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent),
        radial-gradient(circle 5px, var(--accent-color-40), transparent),
        radial-gradient(circle 5px, var(--accent-color-30), transparent);
    background-position: 
        3% 11%, 18% 16%, 37% 10%, 52% 20%, 67% 13%,
        82% 23%, 7% 32%, 27% 37%, 47% 30%, 62% 42%,
        77% 36%, 13% 47%, 32% 52%, 52% 46%, 72% 50%,
        87% 55%, 5% 62%, 26% 67%, 45% 60%, 65% 65%;
    background-size: 4px 4px;
    background-repeat: no-repeat;
    animation: windDriftSlow 45s linear infinite -22.5s;
    z-index: 1;
    pointer-events: none;
}

/* Retro Grid Background */
.hero-section .grid-background {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 500%;
    height: 500%;
    transform: translateX(-50%) perspective(800px) rotateX(60deg);
    transform-origin: bottom center;
    background-image: 
        /* Horizontal lines (grid rows extending to horizon) */
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 400px,
            var(--accent-color-30) 400px,
            var(--accent-color-30) 450px
        ),
        /* Vertical lines (grid columns) */
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 435px,
            var(--accent-color-30) 435px,
            var(--accent-color-30) 450px
        );
    mask-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 20%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 20%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Ensure content appears above the grid */
.hero-content {
    position: relative;
    z-index: 4;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.hero-content h1 {
    font-size: 12rem;
    font-weight: 400;
    margin-bottom: 0rem;
    text-shadow: 0 0 20px var(--accent-color-50);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 7rem;
    color: var(--accent-color-dim);
} 

/* Search Container */
.search-container {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 auto 10rem;
    padding: 0 3rem;
}

.search-box {
    position: relative;
    display: flex;
    background: #1a1a1a;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 20px var(--accent-color-30);
    border: 2px solid var(--accent-color);
}

#company-search {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    color: var(--accent-color);
    background: #1a1a1a;
}

#company-search::placeholder {
    color: var(--accent-color-dim);
}

.search-button {
    background: var(--accent-color);
    border: none;
    padding: 1rem 1.5rem;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.search-button:hover {
    background: var(--accent-color-dim);
    box-shadow: 0 0 15px var(--accent-color-70);
}

/* Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--accent-color-30);
    border: 2px solid var(--accent-color);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid var(--accent-color-20);
    transition: all 0.2s ease;
}

.search-result:hover {
    background-color: #0d0d0d;
    box-shadow: inset 0 0 10px var(--accent-color-20);
}

.search-result:last-child {
    border-bottom: none;
}

.company-symbol {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    text-shadow: 0 0 5px var(--accent-color-30);
}

.company-name {
    color: var(--accent-color-dim);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.no-results, .search-error {
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--accent-color-dim);
    font-style: italic;
}

.search-error {
    color: #ff3333;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--accent-color-05);
    border-radius: 15px;
    border: 1px solid var(--accent-color-20);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color-30);
}

.feature p {
    color: var(--accent-color-dim);
    line-height: 1.5;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: #0d0d0d;
    border-top: 2px solid var(--accent-color);
}

.container {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem 2rem 3rem;
    box-sizing: border-box;
} 

.info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-color-50);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #1a1a1a;
    border: 2px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--accent-color-40);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px var(--accent-color-50);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.step p {
    color: var(--accent-color-dim);
    line-height: 1.5;
}

/* Company Wrapper: flex container to position sidebar and page side-by-side */
.company-wrapper {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

/* Company Page */
.company-page {
    flex: 1;
    max-width: none;
    margin-left: 240px;
    padding: 2rem;
    padding-top: 2rem;
    box-sizing: border-box;
    /* Stack header and content vertically with gap */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 100vh;
    position: relative;
    z-index: 1;
} 
.refresh-button {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.refresh-button:hover:not([disabled]) {
    background: var(--accent-color);
    color: #000000;
    box-shadow: 0 0 10px var(--accent-color-50);
}

.refresh-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    color: var(--accent-color-dim);
    border-color: var(--accent-color-dim);
}

.spinner {
    display: inline-block;
}

.status-banner {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.status-banner.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.status-banner.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.status-banner.warning {
    background: #333300;
    border: 1px solid #ffff00;
    color: #ffff00;
}
.company-header {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px var(--accent-color-20);
    border: 2px solid var(--accent-color);
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 1;
}  

/* Company info at the top */
.company-info { width: 100%; }
.company-info p { max-width: none; }

/* Metrics at the bottom with responsive grid */
.company-metrics { width: 100%; display: block; }
.company-metrics .metrics-inner { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    gap: 12px; 
}
.metric { padding: 1rem; background: #0d0d0d; border-radius: 10px; min-width: 0; border: 1px solid var(--accent-color); }

@media (max-width: 1400px) {
    .company-metrics .metrics-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .company-metrics .metrics-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .company-header { margin-left: 0; }
    .company-info { text-align: center; }
    .company-metrics { justify-content: center; }
    .company-metrics .metrics-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .company-metrics .metrics-inner { grid-template-columns: 1fr; }
} 

.company-info h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--accent-color-50);
}

/* Fixed left sidebar with visible labels */
.company-content {
    display: grid;
    grid-template-columns: 1fr; /* Sidebar is fixed so main content takes full width */
    gap: 2rem;
    align-items: start;
}

/* Sidebar: flex child (not fixed), occupies left column in wrapper */
.sidebar {
    width: 240px;
    overflow: hidden;
    height: calc(100vh - 60px);
    background: #1a1a1a;
    border: none !important;
    border-right: 2px solid var(--accent-color) !important;
    border-radius: 0 !important;
    padding: 1.5rem 0;
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    bottom: 0 !important;
    z-index: 999 !important;
    box-sizing: border-box;
}

/* Ensure content and header reset individual margins (parent padding handles offset) */
.company-header { 
    margin: 0;
    width: 100%;
    max-width: 100%;
}
.content-area { 
    margin: 0;
    margin-right: 8px;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
}

/* Dashboard Grid: force stacked charts (each chart full width of remaining area) */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr; /* stack charts vertically */
    gap: 2rem;
} 

/* Ensure nav labels wrap and are readable */
.nav-tabs li a {
    display: block;
    padding: 0.75rem 1rem;
    padding-right: 0.5rem;
    transition: padding-left 0.15s ease, background-color 0.15s ease;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    color: var(--accent-color);
    border-radius: 5px;
} 

.nav-tabs li a.active {
    background: var(--accent-color-10);
    box-shadow: inset 0 0 10px var(--accent-color-30);
}

.sidebar:hover .nav-tabs li a.active {
    padding-left: 1.5rem;
}

.metric-forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.metric-forecast { 
    width: 100%; 
    max-width: 100%;
    margin-top: 0.75rem;
    overflow: hidden;
}
.metric-forecast .chart {
    width: 100%;
    max-width: 100%;
    min-height: 280px;
    overflow: hidden;
}

.metric-forecast .table-container { overflow-x: auto; width: 100%; }

/* Make financial tables inside metric forecasts use fixed layout so columns compress and do not create horizontal scroll */
.metric-forecast .table-container .financial-table {
    width: 100%;
    table-layout: fixed;
    font-size: 0.95rem;
}
.metric-forecast .table-container .financial-table th,
.metric-forecast .table-container .financial-table td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.5rem;
    text-align: center;
}
.metric-forecast .table-container .financial-table input[type="number"] {
    width: calc(100% - 10px);
    box-sizing: border-box;
    font-size: 0.9rem;
    padding: 0.45rem;
    border: 1px solid var(--accent-color);
    background: #1a1a1a;
    color: var(--accent-color);
    border-radius: 4px;
    text-align: right;
}

/* Hide number input spinner buttons to make cells less cramped */
.metric-forecast .table-container .financial-table input[type="number"]::-webkit-inner-spin-button,
.metric-forecast .table-container .financial-table input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    display: none;
}

/* Firefox spinner removal */
.metric-forecast .table-container .financial-table input[type="number"] {
    appearance: textfield;
}

.metric-forecast .table-container .financial-table input[type="number"]:focus {
    outline: none;
    box-shadow: 0 0 10px var(--accent-color-50);
}
.metric-forecast .table-container .financial-table .forecast-cell {
    text-align: center;
    padding: 0.75rem;
}

.metric-forecast .table-container .financial-table .historical-cell {
    text-align: center;
    padding: 0.75rem;
    color: var(--accent-color-dim);
}

/* Nominal value row styling */
.metric-forecast .table-container .financial-table .nominal-cell {
    text-align: center;
    padding: 0.5rem;
    color: var(--accent-color);
    font-style: italic;
    font-size: 0.9em;
    background: var(--accent-color-05);
}

.metric-forecast .table-container .financial-table .rate-row {
    border-bottom: 1px solid var(--accent-color-20);
}

/* Forecast input fields in valuation assumptions */
.forecast-input {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    padding: 0.45rem;
    text-align: center;
}

/* Style spinner buttons for forecast inputs */
.forecast-input::-webkit-inner-spin-button,
.forecast-input::-webkit-outer-spin-button {
    opacity: 1;
    cursor: pointer;
    filter: invert(1) hue-rotate(90deg) brightness(1.2);
}

.forecast-input::-webkit-inner-spin-button:hover,
.forecast-input::-webkit-outer-spin-button:hover {
    filter: invert(1) hue-rotate(90deg) brightness(1.5);
}

.forecast-input:focus {
    outline: none;
    box-shadow: 0 0 10px var(--accent-color-50);
}

/* Reduce horizontal density for year inputs if they ever display inline */
.valuation-form .year-inputs { grid-template-columns: repeat(10, 1fr); gap: 0.35rem; }

.wacc-table { 
    width: 100%; 
    max-width: 100%;
    overflow-x: auto;
}

.wacc-tables {
    max-width: 100%;
    overflow-x: auto;
}

.wacc-tables .table-container {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.wacc-tables .financial-table {
    min-width: 900px;
    width: 100%;
    table-layout: fixed;
}

.wacc-tables .financial-table th,
.wacc-tables .financial-table td {
    white-space: nowrap;
    padding: 0.5rem;
    text-align: center;
}

/* Keep first column (item labels) left-aligned in WACC tables */
.wacc-tables .financial-table td.item-label,
.wacc-tables .financial-table th:first-child {
    text-align: left;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
}



.company-info p {
    color: var(--accent-color-dim);
    max-width: 100%;
    line-height: 1.5;
}

.header-controls .refresh-button.small {
    font-size: 0.9rem;
}

.header-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}
.metric {
    text-align: center;
    padding: 1rem;
    background: #0d0d0d;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color-dim);
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color-30);
}

/* Company Content Layout */
.company-content {
    display: grid;
    /* main content only (sidebar is fixed and removed from document flow) */
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
} 

/* Sidebar Navigation */
.sidebar {
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 0 20px var(--accent-color-20);
    border: 2px solid var(--accent-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 2rem;
}

.nav-tabs {
    list-style: none;
}

.nav-tabs li {
    margin-bottom: 0.5rem;
}

.tab-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--accent-color-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-link:hover {
    background-color: var(--accent-color-05);
    color: var(--accent-color);
}

.tab-link.active {
    background-color: var(--accent-color-10);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    box-shadow: inset 0 0 10px var(--accent-color-20);
}

/* Content Area */
.content-area {
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 0 20px var(--accent-color-20);
    border: 2px solid var(--accent-color);
    padding: 2rem;
    min-height: 600px;
    margin: 0;
    box-sizing: border-box;
    overflow-x: auto;
    max-width: 100%;
}  

.tab-content {
    display: none;
    width: 100%;
    min-height: 400px;
}

.tab-content.active {
    display: block;
    width: 100%;
    /* Add transition to smooth out any rendering issues */
    animation: fadeIn 0.15s ease-in;
    /* Clip children during fade-in to prevent overflow under sidebar */
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        overflow: hidden; /* Keep children clipped during animation */
    }
    to {
        opacity: 1;
        overflow: visible; /* Allow normal overflow after animation */
    }
}

.tab-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
    text-shadow: 0 0 10px var(--accent-color-40);
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    /* allow more columns on wide screens while remaining responsive */
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
} 

.chart-container {
    background: #0d0d0d;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--accent-color);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.chart-container h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--accent-color-30);
}

.chart {
    min-height: 300px;
    background: #1a1a1a;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Financial Tables */
.table-container {
    overflow-x: auto;
    margin-top: 1rem;
}

.financial-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px var(--accent-color-20);
    border: 1px solid var(--accent-color);
}

.financial-table th {
    background: var(--accent-color);
    color: #000;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Keep first column header left-aligned for tables with item labels */
.financial-table th:first-child {
    text-align: left;
}

.financial-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--accent-color-20);
    color: var(--accent-color-dim);
    text-align: center;
}

/* Keep first column (item labels) left-aligned in tables */
.financial-table td:first-child,
.financial-table .item-label {
    text-align: left;
    font-weight: 500;
}

/* Bold rows for key financial metrics */
.financial-table .bold-row {
    font-weight: 700;
    background: var(--accent-color-08);
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

.financial-table .bold-row td {
    color: var(--accent-color);
}

/* Add spacing before certain rows */
.financial-table .space-before {
    border-top: 2px solid var(--accent-color) !important;
}

.financial-table .space-before td {
    padding-top: 1.5rem;
}

/* Spacer rows for visual separation */
.financial-table .spacer-row td {
    padding: 0.3rem;
    border-bottom: none;
    background: transparent;
}

.financial-table .indent-1 .item-label {
    padding-left: 2rem;
}

/* Keep first column (item labels) left-aligned in tables */
.financial-table td:first-child,
.financial-table td.item-label {
    text-align: left;
}

.financial-table tr:hover {
    background-color: var(--accent-color-05);
}

.financial-table tr:last-child td {
    border-bottom: none;
}

.clickable-rows tr {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.clickable-rows tr:hover {
    background-color: var(--accent-color-10) !important;
    box-shadow: inset 0 0 10px var(--accent-color-20);
}

.clickable-rows tr.selected {
    background-color: var(--accent-color-15) !important;
    font-weight: 600;
    box-shadow: inset 0 0 15px var(--accent-color-30);
}

/* Dashboard Charts */
.dashboard-charts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.dashboard-charts .chart-container {
    width: 100%;
}

/* Ratios Container */
.ratios-container {
    display: grid;
    grid-template-columns: 1fr; /* chart above table */
    gap: 1.5rem;
    align-items: start;
}

/* Valuation Form */
.valuation-form {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #0d0d0d;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    max-width: 100%;
    overflow-x: auto;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    text-shadow: 0 0 5px var(--accent-color-30);
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.year-inputs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.year-inputs input {
    padding: 0.5rem;
    border: 1px solid var(--accent-color);
    background: #1a1a1a;
    color: var(--accent-color);
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
}

.input-group input[type="number"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--accent-color);
    background: #1a1a1a;
    color: var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Style spinner buttons for input-group number inputs */
.input-group input[type="number"]::-webkit-inner-spin-button,
.input-group input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    cursor: pointer;
    filter: invert(1) hue-rotate(90deg) brightness(1.2);
}

.input-group input[type="number"]::-webkit-inner-spin-button:hover,
.input-group input[type="number"]::-webkit-outer-spin-button:hover {
    filter: invert(1) hue-rotate(90deg) brightness(1.5);
}

.input-group input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color-50);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color-30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-color-60);
}

.btn-secondary {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color-10);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--accent-color-40);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Valuation Results */
.valuation-results {
    max-width: none;
    width: 100%;
} 

.valuation-summary {
    background: #0d0d0d;
    color: var(--accent-color);
    padding: 0;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color-20);
}

.valuation-summary h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--accent-color-40);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--accent-color-05);
    border-radius: 10px;
    border: 1px solid var(--accent-color-20);
}

.summary-item .label {
    font-weight: 500;
    color: var(--accent-color-dim);
}

.summary-item .value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color-30);
}

.summary-item .value.highlight {
    font-size: 1.3rem;
    color: #ffd700;
}

.summary-item.highlight-item {
    background: var(--accent-color-10);
    border: 2px solid var(--accent-color-40);
}

.summary-item.highlight-item .value {
    font-size: 1.25rem;
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color-50);
}

.summary-item.positive .value {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color-50);
}

.summary-item.negative .value {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

/* Valuation summary table row styles */
.valuation-summary .financial-table {
    border: none;
    box-shadow: none;
}

.valuation-summary .spacer-row {
    height: 1.5rem;
    background: transparent;
    border: none;
}

.valuation-summary .spacer-row td {
    border: none;
    padding: 0;
}

.valuation-summary .highlight-row {
    background: var(--accent-color-08);
    border-top: 2px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    border-left: none;
}

.valuation-summary .highlight-row td {
    color: var(--accent-color);
    font-weight: 700;
}

.valuation-summary .positive-row {
    background: var(--accent-color-08);
}

.valuation-summary .positive-row td {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color-50);
}

.valuation-summary .negative-row {
    background: rgba(255, 68, 68, 0.08);
}

.valuation-summary .negative-row td {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

.fcff-table-container {
    margin-bottom: 2rem;
    max-width: 100%;
    overflow-x: auto;
}

.fcff-table-container h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color-30);
}

.fcff-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.fcff-charts .chart {
    width: 100%;
    max-width: 100%;
}

.terminal-row {
    background-color: var(--accent-color-15) !important;
    font-weight: 600;
    box-shadow: inset 0 0 15px var(--accent-color-30);
}

.sensitivity-section {
    margin-top: 2rem;
    padding: 2rem;
    background: #0d0d0d;
    border-radius: 15px;
    border: 1px solid var(--accent-color);
}

.sensitivity-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color-30);
}

#sensitivity-results {
    margin-top: 1rem;
}

.positive {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 5px var(--accent-color-30);
}

.negative {
    color: #ff3333;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.3);
}

.neutral {
    color: var(--accent-color-dim);
}

/* Sensitivity Analysis Charts */
.sensitivity-charts {
    margin-bottom: 2rem;
}

.sensitivity-charts h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--accent-color-30);
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-container {
    background: #0a0a0a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    min-height: 350px;
}

.chart-container > div {
    min-height: 320px;
    width: 100%;
}

/* Scenarios Table */
.scenarios-table {
    margin-bottom: 2rem;
}

.scenarios-table h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--accent-color-30);
}

/* Scenario Matrix */
.scenario-matrix {
    margin-top: 2rem;
}

.scenario-matrix h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px var(--accent-color-30);
}

.matrix-description {
    color: var(--accent-color-dim);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.matrix-table {
    background: #0a0a0a;
}

.matrix-table td.positive {
    background: rgba(0, 200, 0, 0.15);
    color: var(--accent-color);
    font-weight: 500;
}

.matrix-table td.negative {
    background: rgba(255, 51, 51, 0.15);
    color: #ff6b6b;
    font-weight: 500;
}

.matrix-table td.neutral {
    background: rgba(0, 204, 0, 0.05);
}

/* Responsive adjustments for sensitivity charts */
@media (max-width: 768px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--accent-color-dim);
    font-style: italic;
}

.error {
    text-align: center;
    padding: 2rem;
    color: #ff6666;
    background: #330000;
    border: 1px solid #ff3333;
    border-radius: 8px;
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: var(--accent-color);
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
    border-top: 2px solid var(--accent-color);
    position: relative;
    z-index: 1000;
}

.footer-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }

    /* On tablet/medium screens make sidebar static so it flows naturally */
    .sidebar { position: static; width: auto; height: auto; box-shadow: none; }
    .content-area { margin-left: 0; max-width: 100%; }

    .company-header { grid-template-columns: 1fr; margin-left: 0; max-width: 100%; text-align: center; margin-top: 0; }
    .company-metrics { justify-content: center; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .ratios-container { grid-template-columns: 1fr; }
    .input-grid { grid-template-columns: 1fr; }
    .year-inputs { grid-template-columns: repeat(2, 1fr); }
    .summary-grid { grid-template-columns: 1fr; }
} 

@media (max-width: 480px) {
    .company-page { padding: 1rem; }
    .content-area { padding: 1rem; }
    .form-section { padding: 1rem; }
    .year-inputs { grid-template-columns: 1fr; }

    /* Collapse sidebar to top nav on very small screens */
    .company-content { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .nav-tabs { display: flex; overflow-x: auto; padding: 0 1rem; }
    .nav-tabs li { margin-bottom: 0; margin-right: 0.5rem; white-space: nowrap; }
} 

/* Large screen spacing */
@media (min-width: 1600px) {
    /* increase side padding for very wide screens (e.g., 27" monitors) */
    .nav-container { padding: 0 6rem; }
    .hero-content { padding: 0 6rem; }
    /* Keep content aligned with sidebar on wide screens too */
    .content-area { padding: 3rem 6rem; margin-right: 32px; }
    .dashboard-grid { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); grid-auto-flow: dense; }
} 

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.tab-content.active {
    animation: fadeIn 0.3s ease-in-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-color-30);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-dim);
    box-shadow: 0 0 15px var(--accent-color-50);
}

/* Watchlist Styles */
.watchlist-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.watchlist-header {
    margin-bottom: 2rem;
}

.watchlist-subtitle {
    color: var(--accent-color);
    opacity: 0.7;
    margin-top: 0.5rem;
}

.watchlist-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #0a0a0a;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

.watchlist-table th {
    background: #1a1a1a;
    color: var(--accent-color);
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--accent-color);
    cursor: pointer;
    user-select: none;
}

.watchlist-table th:first-child {
    border-top-left-radius: 6px;
}

.watchlist-table th:last-child {
    border-top-right-radius: 6px;
}

.watchlist-table tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

.watchlist-table tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}

.watchlist-table th:hover {
    background: #2a2a2a;
}

.watchlist-table td {
    padding: 1rem;
    border-bottom: 1px solid #1a1a1a;
    color: #e0e0e0;
}

.watchlist-row {
    transition: background 0.2s;
}

.watchlist-row:hover {
    background: #1a1a1a;
}

.watchlist-row .clickable {
    cursor: pointer;
}

.upside-cell.positive {
    color: var(--accent-color);
    font-weight: 700;
}

.upside-cell.negative {
    color: #ff4444;
    font-weight: 700;
}

.alert-dropdown {
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
}

.alert-dropdown:hover {
    background: #2a2a2a;
}

.btn-notes {
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-notes:hover {
    background: var(--accent-color);
    color: #0a0a0a;
}

.btn-danger {
    background: #1a1a1a;
    border: 1px solid #ff4444;
    color: #ff4444;
}

.btn-danger:hover {
    background: #ff4444;
    color: #0a0a0a;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.empty-watchlist {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--accent-color);
}

.empty-watchlist h3 {
    margin-bottom: 1rem;
}

.empty-watchlist p {
    margin-bottom: 2rem;
    opacity: 0.7;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #0a0a0a;
    margin: 5% auto;
    border: 2px solid var(--accent-color);
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 20px var(--accent-color-50);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--accent-color);
}

.modal-close {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #ff4444;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body textarea {
    width: 100%;
    min-height: 200px;
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    color: #e0e0e0;
    padding: 1rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
    resize: vertical;
}

.modal-body textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color-30);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--accent-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-secondary {
    background: #1a1a1a;
    border: 1px solid #666;
    color: #e0e0e0;
}

.btn-secondary:hover {
    background: #2a2a2a;
    border-color: var(--accent-color);
}

/* Coming Soon Page */
.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.coming-soon-content {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.coming-soon-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.coming-soon-content p {
    color: var(--accent-color);
    opacity: 0.7;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.coming-soon-content .feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--accent-color-05);
    border-left: 3px solid var(--accent-color);
    border-radius: 5px;
    text-align: left;
}

.coming-soon-content .stay-tuned {
    margin-top: 2rem;
}

.coming-soon-content .btn {
    margin-top: 2rem;
}

/* ============================================================================
   Portfolio Construction - File Folder Tab Design
   ============================================================================ */

/* Portfolio page header */
.page-header {
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--accent-color-50);
}

.page-header .subtitle {
    color: var(--accent-color-dim);
    font-size: 1.1rem;
    margin: 0;
}

.portfolio-tabs {
    display: flex;
    gap: 0;
    margin-top: 1.25rem;
    margin-bottom: 0;
    padding-left: 2rem;
    position: relative;
    z-index: 10;
}

.tab {
    background: linear-gradient(to bottom, var(--accent-color-15) 0%, var(--accent-color-10) 100%);
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    clip-path: polygon(13px 3px, calc(100% - 13px) 3px, calc(100% - 3px) 100%, 3px 100%);
    margin-right: -10px;
    transition: all 0.3s ease;
}

.tab::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color-dim);
    clip-path: polygon(
        10px 0%, calc(100% - 10px) 0%, 100% 100%, 0% 100%,
        3px calc(100% - 3px), calc(100% - 3px) calc(100% - 3px), calc(100% - 13px) 3px, 13px 3px
    );
    z-index: -1;
}

.tab:hover {
    background: linear-gradient(to bottom, var(--accent-color-20) 0%, var(--accent-color-15) 100%);
}

.tab.active {
    background: linear-gradient(to bottom, var(--accent-color) 0%, var(--accent-color-dim) 100%);
    z-index: 20;
    box-shadow: 0 -2px 10px var(--accent-color-30);
}

.tab.active .tab-label {
    color: #0a0a0a;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.tab-label {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    user-select: none;
}

.portfolio-container {
    background: #0f0f0f;
    border: 2px solid var(--accent-color);
    border-radius: 0 5px 5px 5px;
    padding: 2rem;
    margin-top: -2px;
    position: relative;
    z-index: 5;
    min-height: calc(100vh - 390px);
}

.portfolio-section {
    display: none;
}

.portfolio-section.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.section-description {
    color: var(--accent-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.portfolio-table-wrapper {
    overflow: visible;
}

.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.portfolio-table th {
    background: #1a1a1a;
    color: var(--accent-color);
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Sortable header styling */
.sortable-header {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.sortable-header:hover {
    background: var(--accent-color-10);
    color: var(--accent-color-dim);
}

.sortable-header:active {
    background: var(--accent-color-15);
}

/* Wider table for valuation screener */
.screener-table {
    font-size: 0.85rem;
}

.screener-table th,
.screener-table td {
    padding: 0.6rem 0.8rem;
}

/* Alignment classes for table cells */
.align-left {
    text-align: left !important;
}

.align-center {
    text-align: center !important;
}

.align-right {
    text-align: right !important;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 350px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.toast-error {
    background: #1a1a1a;
    color: #ff3333;
    border: 2px solid #ff3333;
}

/* Right-align numeric columns */
.portfolio-table th:nth-child(n+4),
.portfolio-table td:nth-child(n+4) {
    text-align: right;
}

/* Keep first three columns left-aligned (Symbol, Company, Industry) */
.portfolio-table th:nth-child(1),
.portfolio-table th:nth-child(2),
.portfolio-table th:nth-child(3),
.portfolio-table td:nth-child(1),
.portfolio-table td:nth-child(2),
.portfolio-table td:nth-child(3) {
    text-align: left;
}

.portfolio-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--accent-color-20);
    color: #e0e0e0;
}

.portfolio-table tr:hover {
    background: var(--accent-color-05);
}

.symbol-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

.symbol-link:hover {
    text-decoration: underline;
}

.positive {
    color: var(--accent-color);
}

.negative {
    color: #ff3333;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-custom {
    background: var(--accent-color);
    color: #0a0a0a;
}

.badge-default {
    background: rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
}

.alert-dropdown {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    cursor: pointer;
}

.alert-dropdown:focus {
    outline: 2px solid var(--accent-color);
}

/* Actions Dropdown */
.actions-dropdown {
    position: relative;
    display: inline-block;
}

.actions-btn {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.actions-btn:hover {
    background: var(--accent-color);
    color: #0a0a0a;
}

.actions-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #1a1a1a;
    min-width: 220px;
    box-shadow: 0 4px 12px var(--accent-color-30);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    z-index: 10000;
    margin-top: 0.25rem;
    max-height: 400px;
    overflow-y: auto;
}

.actions-dropdown-content.show {
    display: block;
}

.actions-dropdown-content button {
    color: var(--accent-color);
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    text-align: left;
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.actions-dropdown-content button:hover {
    background: var(--accent-color-10);
}

.actions-dropdown-content .remove-action {
    color: #ff3333;
}

.actions-dropdown-content .remove-action:hover {
    background: rgba(255, 51, 51, 0.1);
}

.dropdown-separator {
    height: 1px;
    background: var(--accent-color-30);
    margin: 0.25rem 0;
}

.dropdown-header {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.75rem 1rem 0.5rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.btn-icon {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--accent-color);
}

.btn-icon:hover {
    opacity: 0.7;
}

/* Price Alert Modal */
.alerts-container {
    margin-bottom: 1.5rem;
}

.alerts-list-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--accent-color-05);
    border: 1px solid var(--accent-color-20);
    border-radius: 4px;
}

.alert-type {
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.85rem;
}

.alert-type.buy {
    background: var(--accent-color-20);
    color: var(--accent-color);
}

.alert-type.sell {
    background: rgba(255, 51, 51, 0.2);
    color: #ff3333;
}

.alert-price {
    flex: 1;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-remove-alert {
    background: transparent;
    border: 1px solid #ff3333;
    color: #ff3333;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 3px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-remove-alert:hover {
    background: #ff3333;
    color: #0a0a0a;
}

.add-alert-form {
    border-top: 1px solid var(--accent-color-30);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.add-alert-form h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row label {
    color: var(--accent-color);
    min-width: 60px;
    font-weight: 500;
}

.form-row select,
.form-row input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 1rem;
}

.form-row select:focus,
.form-row input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color-20);
}

.form-row select option {
    background: #1a1a1a;
    color: var(--accent-color);
}

.empty-message {
    text-align: center;
    padding: 3rem;
    color: var(--accent-color);
    opacity: 0.6;
}

/* Notes Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: #0f0f0f;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    margin: 5% auto;
    width: 80%;
    max-width: 600px;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--accent-color);
    margin: 0;
}

.close {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #ff3333;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body textarea {
    width: 100%;
    background: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1rem;
    font-size: 1rem;
    resize: vertical;
}

.modal-body textarea:focus {
    outline: 2px solid var(--accent-color);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--accent-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.loading {
    opacity: 0.5;
}

/* Track Company Button (for company page) */
.track-company-dropdown {
    position: relative;
    display: inline-block;
}

.track-company-btn {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.track-company-btn:hover {
    background: var(--accent-color);
    color: #000000;
    box-shadow: 0 0 10px var(--accent-color-50);
}

.track-dropdown-content {
    display: none;
    position: absolute;
    background: #1a1a1a;
    border: 2px solid var(--accent-color);
    min-width: 220px;
    z-index: 1000;
    margin-top: 0.25rem;
    right: 0;
    box-shadow: 0 4px 15px var(--accent-color-20);
    border-radius: 6px;
}

.track-dropdown-content.show {
    display: block;
}

.track-dropdown-content button {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--accent-color);
    border: none;
    border-bottom: 1px solid var(--accent-color-20);
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.track-dropdown-content button:last-child {
    border-bottom: none;
}

.track-dropdown-content button:hover {
    background: var(--accent-color-15);
    padding-left: 1.25rem;
}

/* Settings Page Styles */
.settings-section {
    display: none;
}

.settings-section.active {
    display: block;
}

.settings-section h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.settings-card {
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.settings-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.settings-description {
    color: #999;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--accent-color-10);
}

.settings-row:last-child {
    border-bottom: none;
}

.settings-row label {
    color: var(--accent-color);
    font-weight: 500;
}

.settings-row span {
    color: #ccc;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.3s;
    border-radius: 24px;
    border: 1px solid var(--accent-color);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--accent-color);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--accent-color-dim);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Theme Grid */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.theme-option.active {
    border-color: var(--accent-color);
    background: var(--accent-color-05);
}

.theme-color {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
}

.theme-name {
    color: #ccc;
    font-size: 0.9rem;
}

/* Alerts Table */
.alerts-table {
    width: 100%;
    border-collapse: collapse;
}

.alerts-table th,
.alerts-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--accent-color-10);
}

.alerts-table th {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.alerts-table td {
    color: #ccc;
}

.alert-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.alert-status.active {
    background: var(--accent-color-20);
    color: var(--accent-color);
}

.alert-status.triggered {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
}

.no-alerts,
.loading-message,
.error-message {
    text-align: center;
    padding: 2rem;
    color: #999;
}

/* ===========================
   LANDING PAGE STYLES
   Apple-inspired immersive experience
   =========================== */

/* Login Button */
.landing-page .login-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.landing-page .login-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

/* Toast Notification */
.landing-page .toast {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.landing-page .toast.toast-error {
    color: #ff3333;
    border: 2px solid #ff3333;
}

/* Hero Section */
.landing-page .hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0rem;
    margin: 0;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: #000000;
}

.landing-page .hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #0f0f0f 100%);
    pointer-events: none;
}

.landing-page .hero-content {
    max-width: 2200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
    padding: 0 3rem;
}

.landing-page .hero-text {
    animation: fadeInUp 1s ease-out;
}

.landing-page .hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.landing-page .hero-tagline {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #888888;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.landing-page .hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #888888;
}

.landing-page .hero-image {
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

.landing-page .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.2);
    transition: transform 0.5s ease;
}

.landing-page .hero-image img:hover {
    transform: scale(1.05);
}

/* Scroll Indicator */
.landing-page .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 2s ease-out 1s backwards;
}

.landing-page .scroll-indicator span {
    display: block;
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.landing-page .scroll-arrow {
    color: var(--accent-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Gallery Section */
.landing-page .gallery-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    background: #0f0f0f;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.landing-page .gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    pointer-events: none;
}

.landing-page .gallery-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 0rem;
    font-weight: 400;
}

.landing-page .gallery-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    padding-bottom: 5rem;
}

.landing-page .gallery-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    width: 1600px;
    position: relative;
}

.landing-page .gallery-wrapper::before,
.landing-page .gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.landing-page .gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0f0f0f 0%, transparent 100%);
}

.landing-page .gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0f0f0f 0%, transparent 100%);
}

.landing-page .gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.landing-page .gallery-item {
    width: 1300px;
    height: 900px;
    flex-shrink: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #000;
}

.landing-page .gallery-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.2);
}

.landing-page .gallery-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.landing-page .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.landing-page .gallery-caption span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.landing-page .gallery-caption p {
    color: #cccccc;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.landing-page .gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 255, 0, 0.02) 100%);
    border: 2px solid rgba(0, 255, 0, 0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.landing-page .gallery-placeholder:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.05) 100%);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 0, 0.2);
}

.landing-page .gallery-placeholder span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.landing-page .gallery-placeholder p {
    color: #888888;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Navigation Buttons */
.landing-page .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.2);
}

.landing-page .gallery-nav span {
    display: inline-block;
    transform: translateY(-2px);
}

.landing-page .gallery-nav:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 255, 0, 0.4);
}

.landing-page .gallery-nav-left {
    left: 2rem;
}

.landing-page .gallery-nav-right {
    right: 2rem;
}

/* Signup Section */
.landing-page .signup-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #000000 0%, #000000 60%, #050705 100%);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

.landing-page .signup-container {
    max-width: 900px;
    width: 100%;
}

.landing-page .signup-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.landing-page .signup-subtitle {
    font-size: 1.2rem;
    color: #888888;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.landing-page .signup-form {
    background: rgba(0, 255, 0, 0.03);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 16px;
    padding: 3rem;
}

.landing-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.landing-page .signup-form .form-group {
    margin-bottom: 1.5rem;
}

.landing-page .signup-form .form-group label {
    display: block;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.landing-page .signup-form .form-group input,
.landing-page .signup-form .form-group select {
    width: 100%;
    padding: 0.875rem;
    background: #1a1a1a !important;
    border: 1px solid #00ff00 !important;
    border-radius: 4px !important;
    color: #00ff00 !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.landing-page .signup-form .form-group select option {
    background: #1a1a1a;
    color: var(--accent-color);
    padding: 0.75rem;
}

.landing-page .signup-form .form-group select option:hover,
.landing-page .signup-form .form-group select option:focus,
.landing-page .signup-form .form-group select option:checked {
    background: var(--accent-color);
    color: #000;
}

.landing-page .signup-form .form-group input:focus,
.landing-page .signup-form .form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color-20);
}

.landing-page .select-wrapper {
    position: relative;
}

.landing-page .checkbox-group {
    margin-bottom: 1rem;
}

.landing-page .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #888888;
    font-size: 0.95rem;
    line-height: 1;
}

.landing-page .checkbox-label span {
    line-height: 1.5;
}

.landing-page .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    vertical-align: middle;
}

.landing-page .checkbox-label input[type="checkbox"]:hover {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
}

.landing-page .checkbox-label input[type="checkbox"]:checked {
    background: #00ff00 !important;
    border-color: #00ff00 !important;
}

.landing-page .checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 14px;
    font-weight: 700;
}

.landing-page .signup-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.landing-page .signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
}

.landing-page .signup-btn:active {
    transform: translateY(0);
}

/* Landing Footer */
.landing-page .landing-footer {
    padding: 3rem 2rem;
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    background: #000000;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.landing-page .landing-footer .footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.landing-page .landing-footer .footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.landing-page .landing-footer .footer-links a:hover {
    opacity: 0.7;
}

.landing-page .landing-footer .disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    font-size: 0.75rem;
    color: #666666;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Sections */
.landing-page .about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
}

.landing-page .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.03) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

/* Mission Section - First about section */
.landing-page .mission-section {
    background: linear-gradient(to bottom, #050705 0%, #050705 20%, #080a08 80%, #0a0d0a 100%);
}

/* Philosophy Section */
.landing-page .philosophy-section {
    background: linear-gradient(to bottom, #0a0d0a 0%, #0a0d0a 20%, #0c100c 80%, #0e130e 100%);
}

/* Approach Section */
.landing-page .approach-section {
    background: linear-gradient(to bottom, #0e130e 0%, #0e130e 20%, #101610 80%, #121812 100%);
}

/* Who We Serve Section */
.landing-page .who-we-serve-section {
    background: linear-gradient(to bottom, #121812 0%, #121812 20%, #141a14 80%, #161c16 100%);
}

.landing-page .about-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-page .about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.landing-page .about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.landing-page .about-section p {
    font-size: 1.2rem;
    line-height: 2;
    color: #aaaaaa;
    margin-bottom: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.landing-page .about-section .emphasis {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

.landing-page .about-section .subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.landing-page .about-section .subtitle strong {
    color: var(--accent-color);
}

/* Approach Grid */
.landing-page .approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .approach-item {
    background: rgba(0, 255, 0, 0.03);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.landing-page .approach-item:hover {
    background: rgba(0, 255, 0, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.landing-page .approach-item h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.landing-page .approach-item p {
    font-size: 1rem;
    color: #888888;
    line-height: 1.7;
}

/* Audience Tiers */
.landing-page .audience-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .tier {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.landing-page .tier:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.3);
}

.landing-page .tier h3 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.landing-page .tier p {
    font-size: 1.1rem;
    color: #888888;
    line-height: 1.7;
}

/* Bottom Line Section */
.landing-page .bottom-line-section {
    background: linear-gradient(to bottom, #161c16 0%, #161c16 20%, #181e18 60%, #1a201a 100%);
    position: relative;
    scroll-snap-stop: normal;
}

.landing-page .bottom-line-section::before {
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.12) 0%, transparent 50%);
}

.landing-page .bottom-line-container {
    text-align: center;
    max-width: 1200px;
    padding: 3rem;
    background: #000000;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.landing-page .bottom-line-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.landing-page .bottom-line-container .highlight {
    font-size: 1.4rem;
    margin: 2rem 0;
}

.landing-page .bottom-line-container .highlight strong {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Landing Page Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Landing Page Responsive Design */
@media (max-width: 968px) {
    .landing-page .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .landing-page .hero-image {
        order: -1;
    }
    
    .landing-page .gallery-item {
        width: 400px;
        height: 400px;
    }
    
    .landing-page .form-row {
        grid-template-columns: 1fr;
    }
    
    .landing-page .signup-form {
        padding: 2rem;
    }
    
    .landing-page .approach-grid,
    .landing-page .audience-tiers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing-page .login-btn {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .landing-page .gallery-item {
        width: 300px;
        height: 300px;
    }
    
    .landing-page .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .landing-page .about-section {
        padding: 3rem 1.5rem;
    }
    
    .landing-page .about-title {
        font-size: 1.8rem;
    }
}

