/* === ADD CSS VARIABLES FOR THE NEW COLOR THEME === */
:root {
    --brand-blue-start: #00B5FF;
    --brand-blue-end: #007BFF;
    --brand-green-start: #32CD32;
    --brand-green-end: #00D084;
    --brand-arrowhead: #00C3FF;
    --brand-dark-bg: #010409;
    --brand-card-bg: rgba(17, 24, 39, 0.5);
    --brand-border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

/* The user requested a white background, but the entire site design is for a dark theme.
   Changing to white would require a full redesign. This retains the dark theme
   while integrating the new brand colors. If a full white theme is desired,
   let me know. */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-dark-bg);
    color: #e5e7eb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* === NEW LOGO STYLING === */
.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1; /* Adjust line height for tight spacing */
}

.logo-line-1 {
    font-size: 1.3rem; /* 20px */
    font-weight: 800; /* Bold, sleek */
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em; /* Spacing for a modern feel */
}

.logo-line-2 {
    font-size: 0.8rem; /* 13px */
    font-weight: 400; /* Lighter weight */
    color: #e5e7eb; /* Light gray for harmony */
    letter-spacing: 0.23em; /* Adjusted to align width with "TIMELINE" */
    text-transform: uppercase;
}
/* === END NEW LOGO STYLING === */


#hero {
    position: relative;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* === UPDATED GRADIENT TEXT WITH NEW COLORS === */
.gradient-text {
    background: linear-gradient(120deg, var(--brand-blue-start), var(--brand-blue-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-blue-end); /* Solid color for CTA */
}
.cta-btn:hover {
    background-color: var(--brand-blue-start); /* Lighter on hover */
}

.cta-btn .aurora {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 181, 255, 0.4) 0%, rgba(0, 181, 255, 0) 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
}
.cta-btn:hover .aurora {
    opacity: 1;
}
.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 181, 255, 0.25);
}
.cta-btn.secondary:hover {
     box-shadow: 0 12px 28px rgba(255, 255, 255, 0.1);
}

.sticky-nav {
    backdrop-filter: blur(20px);
    background-color: rgba(1, 4, 9, 0.95);
    border-bottom: 1px solid var(--brand-border-color);
}

.enhanced-card {
    background-color: var(--brand-card-bg);
    border: 1px solid var(--brand-border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    border: 2px solid transparent;
    background: linear-gradient(145deg, var(--brand-blue-start), var(--brand-green-end)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.enhanced-card:hover::before {
    opacity: 1;
}
.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-list li {
    border-bottom: 1px solid var(--brand-border-color);
    transition: color 0.2s ease;
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0.25rem;
    color: inherit;
    transition: all 0.2s ease;
}
.service-list a:hover {
    color: var(--brand-arrowhead);
}
.service-list a:hover .arrow-icon {
    transform: translateX(4px);
}
.service-list .arrow-icon {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

/* Update other elements to use new brand colors */
#header .text-sky-400, .footer .text-sky-400 {
    color: var(--brand-arrowhead);
}

a:hover {
    color: var(--brand-arrowhead);
}

/* Ensure dropdown and mobile menu links also use the new hover color */
.hover\:text-sky-400:hover {
    color: var(--brand-arrowhead) !important;
}

.bg-sky-500 {
    background-color: var(--brand-blue-end) !important;
}
.hover\:bg-sky-400:hover {
    background-color: var(--brand-blue-start) !important;
}

#process .border-sky-500 {
    border-color: var(--brand-blue-end) !important;
}
#process .text-sky-400 {
    color: var(--brand-arrowhead) !important;
}