/* ==========================
   GLOBAL
========================== */

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

body {
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ==========================
   NAVBAR
========================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    border-bottom: 1px solid #222;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: .25s;
}

nav a:hover {
    color: #bbbbbb;
}

.contact-btn {
    border: 1px solid white;
    padding: 12px 22px;
    border-radius: 6px;
}

.contact-btn:hover {
    background: white;
    color: black;
}

/* ==========================
   HERO
========================== */

.hero {
    max-width: 900px;
    margin: 120px auto;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.hero p {
    color: #b5b5b5;
    font-size: 22px;
    max-width: 700px;
    margin: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
}

.hero-buttons a {
    padding: 16px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: .25s;
}

.hero-buttons a:first-child {
    background: white;
    color: black;
}

.hero-buttons a:last-child {
    border: 1px solid white;
    color: white;
}

.hero-buttons a:last-child:hover {
    background: white;
    color: black;
}

/* ==========================
   STATS
========================== */

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.stat h2 {
    font-size: 58px;
}

.stat p {
    color: #999;
    margin-top: 8px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:900px) {

    .navbar {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .logo img {
        height: 42px;
    }

    .hero {
        margin: 80px auto;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: repeat(2,1fr);
        gap: 50px;
    }

    .stat h2 {
        font-size: 42px;
    }
}

@media (max-width:600px) {

    .hero h1 {
        font-size: 38px;
    }

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

}

/* ==========================
   FEATURED CONVERSATION
========================== */

.featured {
    max-width: 1500px;
    margin: 150px auto 130px;
    padding: 0 6%;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 45px;
}

.section-divider span {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: #555;
}

.section-divider p {
    color: #999;
    letter-spacing: 6px;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.featured-content {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 70px;
    align-items: center;
}

.featured-video {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #222;
}

.featured-video img {
    width: 100%;
    display: block;
    transition: transform .3s ease;
}

.featured-video:hover img {
    transform: scale(1.04);
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: white;
    background: rgba(0,0,0,.22);
    transition: background .25s ease;
}

.featured-video:hover .play-button {
    background: rgba(0,0,0,.35);
}

.featured-text h2 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.featured-text p {
    color: #bbb;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 35px;
}

.featured-button {
    display: inline-block;
    color: black;
    background: white;
    padding: 16px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: .25s;
}

.featured-button:hover {
    background: #ddd;
}

/* Featured mobile */

@media (max-width:900px) {

    .featured {
        margin: 100px auto;
        padding: 0 22px;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .featured-text h2 {
        font-size: 32px;
    }

    .play-button {
        font-size: 70px;
    }
}

/* ==========================
   INTERVIEWS PAGE
========================== */

.page {
    padding: 100px 6% 120px;
}

.page-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.page-hero h1 {
    font-size: 72px;
    margin-bottom: 20px;
}

.page-hero p {
    color: #bbb;
    font-size: 20px;
}

.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    max-width: 1500px;
    margin: 0 auto;
}

.interview-card {
    color: white;
    text-decoration: none;
}

.interview-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #222;
    transition: transform .3s ease, opacity .3s ease;
}

.interview-card:hover img {
    transform: scale(1.03);
    opacity: .85;
}

.interview-card h2 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 16px;
    font-weight: 700;
}

@media (max-width: 1000px) {

    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .page {
        padding: 70px 22px 90px;
    }

    .page-hero h1 {
        font-size: 48px;
    }

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

/* ==========================
   FOOTER
========================== */

.footer {
    border-top: 1px solid #222;
    margin-top: 120px;
    padding: 45px 20px;
    text-align: center;
    background: #000;
}

.footer-content p {
    margin: 8px 0;
    color: #777;
    font-size: 14px;
}

/* ==========================
   UTILITY / LINKS
========================== */

.coming-soon-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.coming-soon-link:hover {
    color: #b3b3b3;
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 120px;
}

.coming-soon-content {
    max-width: 700px;
    text-align: center;
}

.coming-soon-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.coming-soon-content p {
    color: #b3b3b3;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ==========================
   CONTACT PAGE
========================== */

.contact-section {
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 0 6%;
    text-align: center;
}

.contact-email {
    margin: 70px auto;
    text-align: center;
}

.contact-email a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    transition: color .25s ease;
}

.contact-email a:hover {
    color: #bbb;
}

.social-links {
    text-align: center;
    margin-top: 70px;
}

.social-links p {
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.social-links div {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.social-links a:hover {
    color: #bbb;
}

@media (max-width: 700px) {

    .contact-email a {
        font-size: 22px;
    }
}

/* ==========================
   ABOUT PAGE
========================== */

.about-section {
    max-width: 1050px;
    margin: 0 auto 120px;
    padding: 0 6%;
}

.about-copy {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-copy p {
    color: #c7c7c7;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-statement {
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid #333;
    border-radius: 22px;
    padding: 55px;
    text-align: center;
    background: #050505;
}

.about-statement p {
    color: #fff;
    font-size: 26px;
    line-height: 1.55;
    font-weight: 700;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.about-values div {
    border: 1px solid #222;
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    color: #fff;
    background: #050505;
    font-weight: 700;
    line-height: 1.4;
}

.about-cta {
    text-align: center;
    margin: 40px auto 140px;
    padding: 0 20px;
}

.about-cta h2 {
    font-size: 42px;
    margin-bottom: 28px;
}

@media (max-width: 1000px) {

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .about-copy p {
        font-size: 18px;
    }

    .about-statement {
        padding: 34px 24px;
    }

    .about-statement p {
        font-size: 21px;
    }

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

    .about-cta h2 {
        font-size: 32px;
    }
}

/* ==========================
   FOUNDER
========================== */

.founder-section {
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 0 6%;
}

.founder-text-wrap {
    max-width: 850px;
    margin: 70px auto 0;
    text-align: left;
}

.founder-photo-inline {
    width: 210px;
    border-radius: 16px;
    border: 1px solid #222;
    float: left;
    margin: 48px 44px 24px 0;
}

.founder-text h2 {
    font-size: 42px;
    margin-bottom: 0;
}

.founder-title {
    color: #888;
    letter-spacing: 1.5px;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 28px;
}

.founder-text p {
    color: #c7c7c7;
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 24px;
}

@media (max-width: 700px) {

    .founder-text-wrap {
        text-align: center;
        margin-top: 50px;
    }

    .founder-photo-inline {
        float: none;
        display: block;
        margin: 0 auto 30px;
        width: 180px;
    }
}

.cta-link {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: color .25s ease;
}

.cta-link:hover {
    color: #bdbdbd;
}
