:root {
    --navy: #0B1F33;
    --navy-light: #0F2A44;
    --orange: #F59E0B;
    --orange-dark: #D97706;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --text-dark: #374151;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

body {
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: var(--navy);
    padding: 20px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    max-width: 220px; /* desktop max */
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 48px; /* desktop height */
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Hover effect */
.logo:hover img {
    filter: brightness(1.3) saturate(1.6);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}


.nav {
    display: flex;
    justify-content: space-between;
    align-self: flex-start;
}

nav a {
    color: var(--white);
    margin-left: 24px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}
nav a:last-child {
    margin-left: 70px;
}


/* Buttons */
.cta-button {
    background: var(--orange);
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}

.cta-button.large {
    padding: 14px 28px;
    font-size: 1.05rem;
    align-self: flex-start;
}

.cta-button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    align-self: flex-start;
}

/* Hero */
.hero {
    background: linear-gradient(180deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 100px 0;
    animation: fadeUp 0.8s ease;
}

.badge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--orange);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--orange);
}

.hero-sub {
    font-size: 1.25rem;
    max-width: 750px;
    color: #E5E7EB;
}

.hero-cta {
    margin-top: 32px;
}

.microcopy {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #D1D5DB;
}

/* Trust */
.trust {
    background: var(--off-white);
    padding: 24px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    font-weight: 600;
    color: var(--navy);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-light {
    background: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--navy);
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: fadeUp 0.8s ease;
}

.card.accent {
    border-top: 4px solid var(--orange);
}

.step-number {
    color: var(--orange);
    font-size: 2rem;
    font-weight: 800;
}

/* CTA + Contact */
.cta-section {
    background: var(--navy);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.lead-form input {
    padding: 14px;
    border-radius: 6px;
    border: none;
}

/* Footer */
footer {
    background: #071726;
    color: #9CA3AF;
    padding: 40px 0;
}

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

footer h4 {
    color: var(--orange);
}


footer a {
    color: #ffffff;
    text-decoration: none; /* optional – removes underline */
     font-weight: 500;
}

footer a:hover {
    color: #ffffff; /* keeps it white on hover */
    text-decoration: underline; /* optional */
}
footer a:visited {
    color: #ffffff;
}




/* Contact */


.contact a {
    color: #ffffff;
    text-decoration: none; /* optional – removes underline */
}

.contact a:hover {
    color: #ffffff; /* keeps it white on hover */
    text-decoration: underline; /* optional */
}
.contact a:visited {
    color: #ffffff;
}


/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.3rem;
    }
}

/* References / Logos */
.references {
    background: var(--off-white);
    padding: 70px 0;
    overflow: hidden;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 90px;
    margin-right: 40px;
    background: var(--white);
    border-radius: 12px;
    border-top: 4px solid var(--orange);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.logo-item img {
    max-height: 40px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


#formSuccess {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
    color: #ffffff;
}

/* ================
   About page (more whitespace / lighter layout)
   ================ */

.about-page {
    background: #ffffff;
}

/* section spacing on About */
.about-wrap section {
    padding: 88px 0;
}

.about-wrap .about-tight {
    padding: 64px 0;
}

/* HERO */
.about-hero {
    background: #ffffff;
    padding: 90px 0 40px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.about-kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 700;
    background: #fff;
}

.about-hero h1 {
    margin-top: 16px;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.about-hero-sub {
    margin-top: 16px;
    font-size: 1.15rem;
    color: #6B7280;
    max-width: 62ch;
}

.about-hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.about-microcopy {
    margin-top: 12px;
    color: #6B7280;
}

/* Ghost button */
.btn-ghost {
    display: inline-block;
    border: 1px solid #E5E7EB;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
    border-color: rgba(245, 158, 11, 0.8);
    transform: translateY(-2px);
}

/* Hero image card */
.hero-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 18px;
}

.hero-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.hero-card .caption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #6B7280;
}

/* Section titles (lighter than homepage) */
.about-section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.about-section-title h2 {
    font-size: 2.2rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.about-section-title p {
    margin-top: 10px;
    color: #6B7280;
    font-size: 1.05rem;
}

/* Split blocks */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-panel {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 28px;
}

.about-panel h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.about-panel p {
    color: #6B7280;
    line-height: 1.75;
}

/* Images */
.about-image {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    background: #fff;
}

.about-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

/* Mission / Values / Vision */
.mvvs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.mvv-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 28px;
}

.mvv-badge {
    display: inline-block;
    font-weight: 800;
    color: var(--navy);
    border-left: 4px solid var(--orange);
    padding-left: 10px;
    margin-bottom: 12px;
}

.mvv-card p {
    color: #6B7280;
    line-height: 1.75;
}

/* Values mini grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    margin-top: 18px;
}

.value-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.value-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--orange);
    margin-top: 7px;
    flex: 0 0 10px;
}

.value-item strong {
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.value-item span {
    color: #6B7280;
    line-height: 1.6;
    display: block;
}

/* Team strip */
.team-strip {
    background: #fff;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.team-copy h2 {
    font-size: 2.1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.team-copy p {
    color: #6B7280;
    line-height: 1.75;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.tag {
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
}

/* About CTA */
.about-cta {
    background: #fff;
    border-top: 1px solid #E5E7EB;
}

.cta-card {
    background: var(--navy);
    border-radius: 18px;
    padding: 44px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-card p {
    color: #D1D5DB;
    margin: 0;
}

/* Active nav item on About page */
nav a[aria-current="page"] {
    opacity: 0.75;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 6px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mvvs {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-hero h1 {
        font-size: 2.3rem;
    }
}





/* ================
   Careers page (light / whitespace-heavy)
   ================ */

.careers-page {
    background: #ffffff;
}

.careers-wrap section {
    padding: 88px 0;
}

.careers-wrap .careers-tight {
    padding: 64px 0;
}

/* HERO */
.careers-hero {
    background: #ffffff;
    padding: 90px 0 40px;
}

.careers-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.careers-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 700;
    background: #fff;
}

.careers-hero h1 {
    margin-top: 16px;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.careers-hero-sub {
    margin-top: 16px;
    font-size: 1.15rem;
    color: #6B7280;
    max-width: 62ch;
}

.careers-hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.careers-microcopy {
    margin-top: 12px;
    color: #6B7280;
}

/* Hero image card */
.careers-hero-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 18px;
}

.careers-hero-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.careers-hero-card .caption {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #6B7280;
}

/* Section titles */
.careers-section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.careers-section-title h2 {
    font-size: 2.2rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.careers-section-title p {
    margin-top: 10px;
    color: #6B7280;
    font-size: 1.05rem;
}

/* Job card */
.job-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 26px;
}

.job-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.job-head h3 {
    color: var(--navy);
    margin-bottom: 6px;
}

.job-meta {
    margin: 0;
    color: #6B7280;
}

.job-body {
    padding-top: 18px;
}

.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.job-block h4 {
    color: var(--navy);
    margin-bottom: 8px;
}

.job-block p, .job-block li {
    color: #6B7280;
    line-height: 1.7;
}

.job-block ul {
    padding-left: 18px;
    margin: 0;
}

.job-block li {
    margin: 8px 0;
}

/* Apply section */
.careers-apply {
    background: #fff;
    border-top: 1px solid #E5E7EB;
}

.apply-card {
    background: var(--navy);
    border-radius: 18px;
    padding: 44px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.apply-card h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.apply-card p {
    color: #D1D5DB;
    margin: 0;
    max-width: 70ch;
}

.apply-actions {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Active nav item */
nav a[aria-current="page"] {
    opacity: 0.75;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 6px;
}

/* Responsive */
@media (max-width: 900px) {
    .careers-hero-grid {
        grid-template-columns: 1fr;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .careers-hero h1 {
        font-size: 2.3rem;
    }
}




/* Animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .logo-track {
        animation: none;
    }
}

/* Visual Proof Section */
.visual-proof {
    background: var(--off-white);
    padding: 90px 0;
    overflow: hidden;
}

.visual-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.visual-item {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 4px solid var(--orange);
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.visual-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 16px;
}

.visual-item span {
    display: block;
    font-weight: 700;
    color: var(--navy);
}

/* Animations */
.move-left {
    animation-name: floatLeft;
}

.move-right {
    animation-name: floatRight;
}

@keyframes floatLeft {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-18px); }
    100% { transform: translateX(0); }
}

@keyframes floatRight {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(18px); }
    100% { transform: translateX(0); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .visual-item {
        animation: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .visual-track {
        grid-template-columns: 1fr;
    }
}


.card-orange {
    background: var(--orange);
    color: #ffffff;
}

.card-orange h3 {
    color: #ffffff;
}

.card-orange p {
    color: #ffffff;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .logo {
        max-width: 160px;
    }

    .logo img {
        max-height: 36px;
    }

    nav a {
        margin-left: 16px;
        font-size: 0.95rem;
    }
    
    nav a:last-child{
  display: block;      /* puts it on its own line */
  margin-left: 70px;  
  margin-right: 50px;    /* optional: remove the left margin */
  margin-top: 10px;    /* optional: spacing from the row above */
}
    

    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 5px;
        margin-left: 120px;
        align-self: flex-start;
    }

    .cta-button.large {
        padding: 12px 20px;
        font-size: 0.95rem;
        margin-left: 120px;
        align-self: flex-start;
    }
    
    
    @media (max-width: 768px) {
    nav .cta-button {
        margin-left: 24px;
        margin-top: 50px;
        align-self: flex-start;
    }