@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Sans';
    src: url('IBM_Plex_Sans 2/static/IBMPlexSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

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

:root {
    --klein-blue: #002FA7;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --dark-bg: #0a0e27;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    height: 75px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.nav-container {
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-icon {
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--klein-blue);
}

/* Hero Section */
.hero {
    width: 100%;
    height: 72vh;
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 75px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 47, 167, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0;
    padding: 0 80px 0 75px;
}

.hero-text {
    color: var(--white);
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-line {
    display: block;
}

/* Section 2: Who We Are */
.who-we-are {
    width: 100%;
    padding: 0;
}

.who-we-are-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.who-we-are-left {
    background-color: var(--white);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--klein-blue);
    margin-bottom: 30px;
}

.who-we-are-text {
    font-size: 22px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.outline-button {
    background: transparent;
    border: 2px solid var(--klein-blue);
    color: var(--klein-blue);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    align-self: flex-start;
}

.outline-button:hover {
    background-color: var(--klein-blue);
    color: var(--white);
}

.who-we-are-right {
    background-image: url('banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.who-we-are-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.kpi-item {
    text-align: center;
    margin-bottom: 20px;
}

.kpi-number {
    font-size: 38px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.kpi-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Section 3: Thought Leadership */
.thought-leadership {
    width: 100%;
    padding: 0;
}

.thought-leadership-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.thought-leadership-left {
    background-color: #f5f5f5;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.tile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 100%;
}

.tile {
    aspect-ratio: 1;
    background-color: #d0d0d0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tile-1 {
    background-image: url('tile-1.jpg');
}

.tile-2 {
    background-image: url('tile-2.jpg');
}

.tile-3 {
    background-image: url('tile-3.jpg');
}

.tile-4 {
    background-image: url('tile-4.jpg');
}

.tile:hover {
    opacity: 0.9;
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tile-text {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tile-chevron {
    flex-shrink: 0;
}

.thought-leadership-right {
    background-color: var(--white);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thought-leadership-heading {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.thought-leadership-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
}

/* Section 4: Core Values + Founding Story */
.values-founding {
    width: 100%;
    padding: 0;
}

.values-founding-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.values-founding-left {
    background-color: var(--white);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 20px;
    font-weight: 400;
    color: var(--klein-blue);
    margin-bottom: 20px;
    line-height: 1.6;
}

.section-label-white {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
}

.values-founding-right {
    background-image: url('banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.values-founding-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.values-founding-right > * {
    position: relative;
    z-index: 2;
}

.founding-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 300;
}

.video-button {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
}

.video-button:hover {
    background-color: var(--white);
    color: var(--klein-blue);
}

.play-icon {
    flex-shrink: 0;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #002bcd;
}

.footer-main {
    padding: 80px 0 60px;
    background-color: #002bcd;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column:not(.footer-column-right) {
    padding: 40px;
}

.footer-column-right {
    align-items: flex-end;
    text-align: right;
}

.footer-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-column:not(.footer-column-right) .footer-label {
    color: var(--white);
}

.footer-column-right .footer-label {
    color: var(--white);
}

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

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

.footer-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-column:not(.footer-column-right) .footer-links a {
    color: var(--white);
}

.footer-column:not(.footer-column-right) .footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column-right .footer-links a {
    color: var(--white);
}

.footer-column-right .footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    height: 220px;
    width: auto;
    margin-bottom: 24px;
}

.linkedin-icon {
    color: var(--white);
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 0;
}

.linkedin-icon svg {
    display: block;
    shape-rendering: geometricPrecision;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.linkedin-icon:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    background-color: #001a5c;
    padding: 24px 0;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.footer-legal {
    color: #999999;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-separator {
    color: #666666;
}

/* Coming Soon Page */
.coming-soon-section {
    min-height: calc(100vh - 75px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    margin-top: 75px;
    background-color: var(--white);
}

.coming-soon-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.coming-soon-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--klein-blue);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.coming-soon-message {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 60px;
    }
    
    .hero-text {
        font-size: 56px;
    }
    
    .who-we-are-left,
    .who-we-are-right,
    .thought-leadership-left,
    .thought-leadership-right,
    .values-founding-left,
    .values-founding-right {
        padding: 80px 60px;
    }
    
    .thought-leadership-left {
        padding: 0;
    }
    
    .footer-container {
        padding: 0 60px;
    }
}

@media (max-width: 968px) {
    .nav-container {
        padding: 0 40px;
    }
    
    .hero {
        height: 70vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-text {
        font-size: 48px;
    }
    
    .who-we-are-container,
    .thought-leadership-container,
    .values-founding-container {
        grid-template-columns: 1fr;
    }
    
    .who-we-are-left,
    .who-we-are-right,
    .thought-leadership-left,
    .thought-leadership-right,
    .values-founding-left,
    .values-founding-right {
        padding: 60px 40px;
    }
    
    .thought-leadership-left {
        padding: 0;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .tile-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column-right {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .logo-img {
        height: 75px;
    }
    
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-text {
        font-size: 36px;
    }
    
    .who-we-are-left,
    .who-we-are-right,
    .thought-leadership-left,
    .thought-leadership-right,
    .values-founding-left,
    .values-founding-right {
        padding: 50px 30px;
    }
    
    .thought-leadership-left {
        padding: 0;
    }
    
    .section-label,
    .section-label-white {
        font-size: 11px;
    }
    
    .who-we-are-text {
        font-size: 18px;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kpi-number {
        font-size: 40px;
    }
    
    .tile-grid {
        grid-template-columns: 1fr;
    }
    
    .thought-leadership-heading {
        font-size: 32px;
    }
    
    .values-list li {
        font-size: 18px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-bottom-container {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text {
        font-size: 28px;
    }
    
    .who-we-are-left,
    .who-we-are-right,
    .thought-leadership-left,
    .thought-leadership-right,
    .values-founding-left,
    .values-founding-right {
        padding: 40px 20px;
    }
    
    .thought-leadership-left {
        padding: 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-bottom-container {
        padding: 0 20px;
    }
}
