:root {
    --bg-dark: #0B0F14;
    --bg-card: #121826;
    --accent-blue: #4C6FFF;
    --accent-blue-glow: rgba(76, 111, 255, 0.4);
    --text-white: #FFFFFF;
    --text-gray: #A0ABC0;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

.section-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.justify-center { justify-content: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(76, 111, 255, 0.2);
}

.btn-primary:hover {
    background: #5B7BFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-blue-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-secondary.border-only {
    background: transparent;
}
.btn-secondary.border-only:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(11, 15, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text-white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.headline {
    font-size: 4.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-orb {
    width: 90%;
    max-width: 450px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.glow-orb {
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--accent-blue);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
    animation: pulseGlow 4s alternate infinite;
}

/* Trust Strip */
.trust-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    gap: 30px;
}

.ticker-content span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-content .dot {
    color: var(--accent-blue);
}

/* Services */
.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(76, 111, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 111, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(76, 111, 255, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}
.split-layout.reverse > * {
    direction: ltr;
}

.large-text {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 500;
}

.floating-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    animation: float 8s ease-in-out infinite;
}

.border-glow {
    border: 1px solid var(--border-color);
    box-shadow: 0 0 40px rgba(76, 111, 255, 0.15);
}

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

.feature-block {
    text-align: center;
    padding: 30px;
    background: rgba(18, 24, 38, 0.5);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.feature-block i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.feature-block h4 {
    font-size: 1.25rem;
}

/* Jobs */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.job-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-header h4 {
    font-size: 1.4rem;
}

.badge {
    background: rgba(76, 111, 255, 0.1);
    color: var(--accent-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-card p {
    margin-bottom: 24px;
}

.btn-link {
    color: var(--accent-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    gap: 12px;
}

/* Snapshot */
.custom-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.custom-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.lead-text {
    font-size: 1.6rem;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

/* Final CTA */
.huge-title {
    font-size: 4rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #A0ABC0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 12px;
    color: var(--text-white);
}

.social-icons a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-links h4, .footer-newsletter h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-white);
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--accent-blue);
}

.newsletter-form button {
    background: var(--accent-blue);
    border: none;
    width: 48px;
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: #5B7BFF;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 5%;
    text-align: center;
}

/* Animations & Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0% { opacity: 0.2; transform: scale(0.9); }
    100% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Scroll Revel Classes */
.fade-up, .fade-left, .fade-right, .fade-in {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up { transform: translateY(40px); }
.fade-left { transform: translateX(40px); }
.fade-right { transform: translateX(-40px); }
.fade-in { transform: scale(0.95); }

.in-view {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .headline { font-size: 3.5rem; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-visual { order: -1; }
    .split-layout.reverse .split-visual { order: -1; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .cta-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .headline { font-size: 2.5rem; }
    .huge-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
