﻿:root {
    --dark-blue: #003f5b;
    --orange: #e06601;
    --gray: #b9bfbf;
    --white: #ffffff;
    --black: #010101;
}

.content-wrapper {
    /* max-width: 1024px; */
    max-width: 955px;
    margin: 0 auto;
    background-color: var(--gray);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    background: lightgray;
    color: var(--black);
}

/* NAVBAR */
.navbar {
    background: var(--gray);
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* max-width: 1024px;
  margin: 0 auto; */
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

    .logo img {
        height: 40px;
        width: auto;
    }

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--dark-blue);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    flex-wrap: nowrap;
    gap: 1rem;
}

.nav-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-group {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.left-nav {
    justify-content: flex-start;
    gap: 2rem;
}

.right-nav {
    justify-content: flex-end;
    flex: 1;
}

.left-nav a {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.right-nav a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.right-nav button {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.cta {
    background: var(--orange);
    color: white !important;
    padding: 10px 10px;
    border-radius: 7px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hamburger {
        display: block;
        font-size: 1.8rem;
        color: var(--dark-blue);
        cursor: pointer;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: var(--gray);
        width: 100%;
    }

        .nav-menu.open {
            display: flex;
        }

    .nav-group {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1rem;
        gap: 0.6rem;
        width: 100%;
    }

    .left-nav,
    .right-nav {
        width: 100%;
    }
}


@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }

    .nav-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-left {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .nav-group.left-nav {
        justify-content: flex-start;
        gap: 2rem;
    }

    .nav-group.right-nav {
        justify-content: flex-end;
        gap: 2rem;
        flex: 1;
    }
}

.hero h1,
.hero h2,
.hero p {
    margin: 0;
    padding: 0;
}

/* BANNER */
.banner {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 11px;
    font-weight: bold;
    font-size: 19px;
    margin-top: 7px;
}

/* HERO */
.hero {
    background: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-right: 1px;
}

    .hero h1 {
        /* font-size: 11rem; */
        font-family: Georgia, serif;
        margin: 0px;
        font-family: 'Libre Baskerville', serif;
        font-weight: 700;
        font-size: 11rem;
        margin-top: -34px;
    }

    .hero h2 {
        font-size: 22px;
        font-weight: normal;
        color: #e06601;
        margin: 0px;
        letter-spacing: 2px;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 600;
    }

    .hero p {
        font-style: italic;
        font-size: 18px;
        font-weight: normal;
        color: var(--orange);
        margin: 0px;
        letter-spacing: 6px;
        font-style: italic;
        font-family: 'Rajdhani', sans-serif;
        margin-top: -36px;
    }

/* SECTION */
.section {
    background: #b9bfbf;
    padding: 2rem 0rem;
}

.section-header {
    width: 72%;
    max-width: 100%;
}

.arrow-bar-full {
    width: 80%;
    height: 37px;
    display: block;
}

.philosophy-content {
    margin-top: 2rem;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
}

    .philosophy-content p {
        font-size: 23px;
        font-weight: 550;
        margin: 10px 0;
        color: #010101;
    }

    .philosophy-content .highlight {
        color: black;
        display: inline-block;
        font-size: 2.2rem;
        font-weight: bolder;
    }

.p-heading {
    font-size: 2rem;
    font-family: sans-serif;
}

.video-section {
    background: #003f5b;
    padding: 2rem 0rem 0;
    text-align: center;
    margin-right: 1px;
}

.video-title {
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.video-placeholder {
    border: 2px solid white;
    padding: 5rem 0;
    margin: auto;
    width: 90%;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #003f5b;
}

.play-icon {
    background: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-cta {
    background: #e06601;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 1rem;
    margin-top: 2rem;
}

.business-content {
    margin-top: 2rem;
    font-family: 'Rajdhani', sans-serif;
}

    .business-content h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #010101;
    }

    .business-content p {
        font-size: 1.3rem;
        font-weight: 500;
        margin: 1rem 0;
        color: #010101;
        gap: 0.5rem;
    }

.contactus-content {
    margin-top: 2rem;
    font-family: 'Rajdhani', sans-serif;
    }

    .contactus-content h2 {
        color: black;
        display: inline-block;
        font-size: 2.2rem;
        font-weight: bolder;
    }

    .contactus-content p {
        font-size: 1.3rem;
        font-weight: 500;
        margin: 1rem 0;
        color: #010101;
        gap: 0.5rem;
    }

.viewing-wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    background: var(--gray);
    overflow: hidden;
}

.viewing-container {
    display: flex;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-box {
    background: var(--orange);
    color: white;
    font-weight: bold;
    padding: 2rem 1.5rem;
    font-size: 1.1rem;
    width: 180px;
    transform: skewX(-36deg);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .view-box > span {
        transform: skewX(25deg);
        text-align: center;
    }

/* Edge boxes are hidden by default */
.edge-box {
    display: none;
}

/* 600px and below: show edge boxes if space allows */
@media (max-width: 600px) {
    .viewing-container {
        transform: translateX(-25px);
        /* left peek */
    }

    .edge-box {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .view-box {
        width: 105px;
        font-size: 0.95rem;
        padding: 1.5rem 1rem;
    }
}

/* Ultra-small screens: hide edge boxes again */
@media (max-width: 360px) {
    .edge-box {
        display: none;
    }

    .viewing-container {
        transform: none;
    }

    .view-box {
        width: 120px;
        padding: 1.2rem 0.8rem;
        font-size: 0.85rem;
    }
}

.custom-note {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.attention-section {
    background: #b9bfbf;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
}

.attention-header {
    background: #003f5b;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.attention-content {
    margin: 2rem 0;
}

    .attention-content h3 {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #010101;
    }

.subtext {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: #010101;
}

.bold-message {
    font-size: 1.4rem;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: #010101;
}

.cta-button.orange {
    display: inline-block;
    background: #e06601;
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
}

.attention-subheader {
    margin-top: 3rem;
}

.arrow-bar-double {
    width: 100%;
    height: 50px;
    display: block;
}

.coming-soon-bar {
    margin-top: 10px;
    display: flex;
}

.sub-bar {
    width: 370px;
    height: 27px;
}

.founder-letter {
    background: #b9bfbf;
    padding: 2rem 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #010101;
    max-width: 900px;
    font-weight: 500;
}

    .founder-letter .intro {
        font-style: italic;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .founder-letter em {
        font-style: italic;
    }

    .founder-letter strong {
        font-weight: 700;
    }

    .founder-letter .signature {
        font-family: 'Georgia', cursive;
        font-style: italic;
        font-size: 1.2rem;
        display: inline-block;
        margin-top: 0.3rem;
    }

.site-footer {
    background: #003f5b;
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    margin-right: 1px;
    margin-top: 5px;
}

.patents {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 700;
    font-size: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.footer-item {
    white-space: nowrap;
}

.footer-email {
    font-weight: 700;
    font-size: 1rem;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-right {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1rem;
    }
}


/* Tablets: iPads, small laptops */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 11rem;
        margin-top: 0;
        line-height: 1.1;
    }

    .hero h2,
    .hero p {
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .hero h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero p {
        font-size: 1.2rem;
        letter-spacing: 3px;
        margin-top: 0;
    }

    .sub-bar text {
        letter-spacing: 0 !important;
        font-size: 13px !important;
    }

    .sub-bar {
        width: 374px;
        height: 32px;
    }

    .section-header svg text {
        font-size: 30px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-group.left-nav,
    .nav-group.right-nav {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }

    .nav-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-group.left-nav {
        justify-content: flex-start;
        gap: 2rem;
    }

    .nav-group.right-nav {
        justify-content: flex-end;
        gap: 2rem;
    }
}

/* Large phones: iPhone Plus, Pixel */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .hamburger {
        display: block;
        font-size: 1.8rem;
        color: var(--dark-blue);
        cursor: pointer;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--gray);
    }

        .nav-menu:not(.open) {
            display: none;
        }

        .nav-menu.open {
            display: flex;
        }

    .nav-group {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 1rem;
        gap: 0.6rem;
    }

    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }

        .hero h1 {
            font-size: 7rem;
            margin: 0;
            line-height: 1;
            z-index: 1;
        }

        .hero h2,
        .hero p {
            max-width: 80%;
            /* match approximate width of h1 text */
            margin: 0 auto;
            display: block;
        }

        .hero h2 {
            font-size: 13px;
            margin-top: -10px;
            /* bring closer to h1 */
            color: #e06601;
            font-weight: 600;
        }

        .hero p {
            font-size: 1rem;
            letter-spacing: 2px;
            margin-top: -8px;
            /* bring closer to h2 */
            font-style: italic;
            color: #e06601;
        }

    .sub-bar text {
        font-size: 13px !important;
        letter-spacing: 0 !important;
    }

    .section-header svg text {
        font-size: 20px;
        padding-left: 10px;
    }

    /* .section-header svg {
    width: 100%;
    min-width: 350px;
  } */
    .sub-bar {
        width: 300px;
    }
}

/* Small phones: iPhone SE, Galaxy A3 */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 7rem;
        margin-top: 0;
        line-height: 1.1;
    }

    .hero h2,
    .hero p {
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .sub-bar text {
        font-size: 16px;
    }

    .section-header svg text {
        font-size: 30px;
        padding-left: 10px;
        font-weight: 200;
        letter-spacing: 3px;
    }

    .section-header svg:not(.sub-bar) {
        width: 100%;
        min-width: 225px;
    }

    .sub-bar {
        width: 220px !important;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 5rem;
        line-height: 1.1;
    }

    .hero h2,
    .hero p,
    .video-title,
    .bold-message,
    .cta-button.orange,
    .footer-email,
    .footer-item {
        font-size: 0.85rem;
    }

    .sub-bar text {
        font-size: 16px;
    }

    .sub-bar {
        width: 208px !important;
    }

    .section-header svg text {
        font-size: 16px;
        padding-left: 10px;
    }

    .section-header svg:not(.sub-bar) {
        width: 100%;
        min-width: 280px;
    }

    .p-heading {
        font-size: 1.3rem;
    }

    .view-box {
        width: 90px;
        font-size: 0.8rem;
    }
}

.human-section {
    padding: 0;
    margin: 0;
}

.human-content {
    width: 100%;
    overflow: hidden;
    padding-right: 1px;
}

    .human-content img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

.section-header svg text:not(.sub-bar text) {
    font-family: system-ui;
    letter-spacing: 2;
    font-weight: 500;
    font-size: 23px;
}

.signature img {
    width: 10%;
    height: auto;
    display: block;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .signature img {
        width: 20%;
    }
}

@media (max-width: 480px) {
    .signature img {
        width: 30%;
    }
}

.sub-bar text {
    font-size: 11px;
    letter-spacing: 0;
    font-weight: 500;
    font-family: system-ui;
}
