@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');

:root {
    --sofiasans: "Sofia Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    --col-lightaccent2: #7eb9e8;
    --col-lightaccent1: #4a89c5;
    --col-lightfore1: #4a5568;
    --col-lightfore2: #2d3748;
    /* --col-darkback1: rgb(17, 24, 39); */
    --col-darkback1: rgb(17, 24, 39);
    --col-darkback1a: rgb(17, 24, 39, 0.9);
    --col-darkback2: rgb(51, 80, 120);
    --col-darkfore1: rgb(249, 250, 251);
    --col-darkfore2: rgb(209, 213, 219);
    --col-darkfore3: rgb(195, 197, 201);
    --col-heroback: #eff5fb;
}

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

body {
    font-family: var(--sans);
    line-height: 1.6;
    color: var(--col-lightfore1);
    background: #f8f9fb;
}

.anchor {
    scroll-margin-top: 150px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    /* background: rgba(255, 255, 255, 1); */
    background: var(--col-darkback1a);
    backdrop-filter: blur(12px);
    padding: 1.25rem 5%;
    z-index: 1000;
    border-bottom: 1px solid #374151;
    box-shadow: 2px 0px 8px 0px #1f252ffa;
}

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

#nav-expando {
    display: none;
    position: absolute;
    top: 25px;
    left: 25px;
    background: transparent;
    border: none;
    color: var(--col-darkfore1);
}

.logo {
    font-family: var(--sofiasans);
    font-size: 1.3rem;
    font-weight: 700;
    /* color: var(--col-lightfore2); */
    color: var(--col-darkfore1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-img-inline {
    height: 1.1em;
    display: inline-block;
    /* baseline-shift: -0.25em; */
    transform: scale(1.1);
    padding-right: 0.2em;
    filter: drop-shadow(0px 0px 1px white)
}

.betaicon {
    font-family: var(--sans);
    display: block;
    background-color: var(--col-heroback);
    color: rgb(55, 100, 164);
    font-size: 0.5em;
    border-radius: 0.5em;
    padding: 0.12em 0.4em 0.06em 0.4em;
    margin-left: 0.1em;
    font-weight: 750;
}


#nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 1.75rem;
    overflow-y: hidden;
    transition: max-height 0.1s cubic-bezier(0.19, 1, 0.22, 1), padding-top 0.1s cubic-bezier(0.19, 1, 0.22, 1);
}

nav a {
    text-decoration: none;
    /* color: #64748b; */
    color: var(--col-darkfore2);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav>a:hover {
    color: var(--col-lightaccent2);
}

/* .nav-cta {
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--col-lightaccent1);
    border: 2px solid var(--col-lightaccent1);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
} */

.nav-cta:hover {
    background: var(--col-lightaccent1);
    color: white;
}

.nav-button-link {
    display: flex;
    white-space: nowrap;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    color: white !important;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.discord-bg {
    background: #5865F2;
}

.nav-button-link:hover {
    background: #4752c4;
    color: white !important;
    transform: translateY(-1px);
}

#highlights {
    padding-top: 0px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 650px;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #e8f4ff 0%, #f0f4f8 40%, #ffffff 100%); */
    background: var(--col-heroback);
    padding: 3% 0rem 1% 0rem;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.herogallery-container {
    position: absolute;
    opacity: 0.9;
    z-index: 0;
    max-width: 1800px;
    width: 90vw;
    height: 100%;
    display: flex;
    justify-content: center;
    top: -5px;
}

.herogallery-video {
    /* position: absolute;
    top: -20px; */
    pointer-events: none;
    position: relative;
    flex: 1 1 40%;
}

.herogallery-lefthalf {
    left: -140px;
}

.herogallery-righthalf {
    right: -140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(91, 155, 213, 0.12) 0%, transparent 64%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -70%;
    left: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(91, 155, 213, 0.12) 0%, transparent 64%);
    border-radius: 50%;
    pointer-events: none;
}

/* Geometric shapes */
.hero .geometric-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(91, 155, 213, 0.10) 0%, rgba(91, 155, 213, 0.03) 100%);
    border: 2px solid rgba(91, 155, 213, 0.25);
    pointer-events: none;
}

.hero .geometric-shape,
.founder-note-content {
    box-shadow:
        4px 4px 0px rgba(91, 155, 213, 0.12),
        8px 8px 0px rgba(91, 155, 213, 0.06),
        12px 12px 20px rgba(91, 155, 213, 0.08);
}

/* LEFT SIDE - 2 Circles + 2 Squares */
.hero .shape-2 {
    top: 70%;
    left: 6%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: float2 8s cubic-bezier(0.37, 0, 0.63, 1) infinite;
    /* Left - Circle */
}

.hero .shape-4 {
    top: 15%;
    left: 10%;
    width: 55px;
    height: 55px;
    transform: rotate(30deg);
    animation: float4 7s cubic-bezier(0.37, 0, 0.63, 1) infinite;
    /* Left - Square */
}

.hero .shape-6 {
    bottom: 25%;
    left: 12%;
    width: 60px;
    height: 60px;
    transform: rotate(15deg);
    animation: float1 9s cubic-bezier(0.37, 0, 0.63, 1) infinite 1s;
    /* Left - Square */
}

.hero .shape-7 {
    top: 42%;
    left: 8%;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    animation: float3 8.5s cubic-bezier(0.37, 0, 0.63, 1) infinite 2s;
    /* Left - Circle */
}

/* RIGHT SIDE - 2 Squares + 2 Circles */
.hero .shape-1 {
    top: 12%;
    right: 8%;
    width: 80px;
    height: 80px;
    transform: rotate(20deg);
    animation: float1 7.5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
    /* Right - Square */
}

.hero .shape-3 {
    bottom: 10%;
    right: 10%;
    width: 65px;
    height: 65px;
    transform: rotate(45deg);
    animation: float3 8s cubic-bezier(0.37, 0, 0.63, 1) infinite 1.5s;
    /* Right - Square */
}

.hero .shape-5 {
    top: 48%;
    right: 5%;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    animation: float2 9s cubic-bezier(0.37, 0, 0.63, 1) infinite 0.5s;
    /* Right - Circle */
}

.hero .shape-8 {
    bottom: 20%;
    right: 9%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    animation: float4 8.5s cubic-bezier(0.37, 0, 0.63, 1) infinite 2.5s;
    /* Right - Circle */
}

@keyframes float1 {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }

    25% {
        transform: translateY(-22px) translateX(8px) rotate(5deg) scale(1.03);
        box-shadow: 6px 8px 0px rgba(91, 155, 213, 0.10), 12px 16px 0px rgba(91, 155, 213, 0.05), 18px 24px 28px rgba(91, 155, 213, 0.12);
    }

    50% {
        transform: translateY(-40px) translateX(15px) rotate(10deg) scale(1.06);
        box-shadow: 8px 14px 0px rgba(91, 155, 213, 0.08), 16px 24px 0px rgba(91, 155, 213, 0.04), 22px 32px 36px rgba(91, 155, 213, 0.14);
    }

    78% {
        transform: translateY(-8px) translateX(11px) rotate(4deg) scale(0.98);
        box-shadow: 4px 5px 0px rgba(91, 155, 213, 0.13), 8px 9px 0px rgba(91, 155, 213, 0.065), 10px 14px 18px rgba(91, 155, 213, 0.07);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0px) translateX(0px) rotate(45deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }

    30% {
        transform: translateY(-20px) translateX(-5px) rotate(50deg) scale(1.04);
        box-shadow: 6px 10px 0px rgba(91, 155, 213, 0.10), 12px 18px 0px rgba(91, 155, 213, 0.05), 16px 26px 30px rgba(91, 155, 213, 0.12);
    }

    50% {
        transform: translateY(-35px) translateX(-10px) rotate(55deg) scale(1.05);
        box-shadow: 8px 16px 0px rgba(91, 155, 213, 0.08), 14px 26px 0px rgba(91, 155, 213, 0.04), 20px 34px 34px rgba(91, 155, 213, 0.13);
    }

    75% {
        transform: translateY(-6px) translateX(-8px) rotate(52deg) scale(0.99);
        box-shadow: 4px 5px 0px rgba(91, 155, 213, 0.13), 8px 10px 0px rgba(91, 155, 213, 0.065), 10px 15px 18px rgba(91, 155, 213, 0.07);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(45deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }

    28% {
        transform: translateY(16px) translateX(10px) rotate(-4deg) scale(0.97);
        box-shadow: 3px 2px 0px rgba(91, 155, 213, 0.14), 6px 4px 0px rgba(91, 155, 213, 0.07), 8px 8px 14px rgba(91, 155, 213, 0.06);
    }

    50% {
        transform: translateY(30px) translateX(20px) rotate(-8deg) scale(0.95);
        box-shadow: 2px 1px 0px rgba(91, 155, 213, 0.16), 4px 2px 0px rgba(91, 155, 213, 0.08), 6px 4px 10px rgba(91, 155, 213, 0.05);
    }

    76% {
        transform: translateY(7px) translateX(16px) rotate(-3deg) scale(1.02);
        box-shadow: 5px 6px 0px rgba(91, 155, 213, 0.11), 10px 11px 0px rgba(91, 155, 213, 0.055), 14px 16px 22px rgba(91, 155, 213, 0.09);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }
}

@keyframes float4 {
    0% {
        transform: translateY(0px) translateX(0px) rotate(30deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }

    22% {
        transform: translateY(-14px) translateX(-8px) rotate(35deg) scale(1.03);
        box-shadow: 6px 9px 0px rgba(91, 155, 213, 0.10), 12px 16px 0px rgba(91, 155, 213, 0.05), 16px 22px 28px rgba(91, 155, 213, 0.11);
    }

    50% {
        transform: translateY(-25px) translateX(-15px) rotate(40deg) scale(1.05);
        box-shadow: 8px 14px 0px rgba(91, 155, 213, 0.08), 14px 22px 0px rgba(91, 155, 213, 0.04), 20px 30px 32px rgba(91, 155, 213, 0.13);
    }

    80% {
        transform: translateY(-5px) translateX(-12px) rotate(38deg) scale(0.98);
        box-shadow: 4px 5px 0px rgba(91, 155, 213, 0.13), 8px 9px 0px rgba(91, 155, 213, 0.065), 10px 13px 17px rgba(91, 155, 213, 0.07);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(30deg) scale(1);
        box-shadow: 4px 4px 0px rgba(91, 155, 213, 0.12), 8px 8px 0px rgba(91, 155, 213, 0.06), 12px 12px 20px rgba(91, 155, 213, 0.08);
    }
}

.hero .container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero .fadeout {
    position: absolute;
    width: 100vw;
    height: 100px;
    z-index: 2;
}

.hero .fadeout-bottom {
    background: linear-gradient(180deg, transparent 0%, #f8f9fb 95%);
    bottom: 0px;
}

.hero .fadeout-top {
    background: linear-gradient(0deg, transparent 0%, #f8f9fb 90%);
    top: 0px;
}

.hero h1 {
    font-family: var(--sofiasans);
    font-size: 4.0rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: #1a202c;
    letter-spacing: -0.02em;
    z-index: 3;
    max-width: 50vw;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    /* margin-bottom: 2.5rem; */
    color: var(--col-lightfore1);
    max-width: 40vw;
    min-width: 250px;
    line-height: 1.75;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* 
.hero-visual {
    margin-top: 3rem;
    max-width: 900px;
    width: 100%;
    height: 350px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    font-size: 1.1rem;
    border: 2px dashed #e2e8f0;
} */

.cta-button {
    padding: 0.8rem 2rem 0.9rem 2rem;
    margin: 30px auto 0px auto;
    background: var(--col-lightaccent1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--sofiasans);
    font-weight: 500;
    font-size: 1.5rem;
    white-space: nowrap;
}

.hero .cta-button {
    width: fit-content;
}

.cta-bg {
    display: flex;
    align-items: center;
    column-gap: 0.15em;
    background: var(--col-lightaccent1);
    transition: all 0.1s;
    box-shadow: 0 2px 8px rgba(126, 185, 232, 0.3);
}

.cta-bg:hover {
    background: var(--col-lightaccent2);
    box-shadow: 0 4px 12px rgba(126, 185, 232, 0.4);
    transform: translateY(-1px);
}

/* Section Styles */
section {
    padding: 5rem 2%;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
}

h2 {
    font-family: var(--sofiasans);
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--col-lightfore1);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
}


/* What We Offer Section */
#what-we-offer {
    background: white;
}

.features-list {
    max-width: 950px;
    margin: 3rem auto 0;
}

.highlights .container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

#team .container {
    max-width: 1200px;
}

.highlights-grid,
.madewiththrixel-grid {
    display: grid;
    gap: 1.5rem;
    /* margin-top: 3rem; */
    justify-content: center;
}

/* nicebox can be in features-list and highlights-grid */
.nicebox {
    /* margin-bottom: 2rem; */
    /* padding: 1.7rem 2.5rem; */
    border-radius: 12px;
    /* border: 1px solid #dee3e9; */
    transition: transform 0.3s, box-shadow 0.3s;
    /* background: rgba(91, 155, 213, 0.12); */
    list-style: none;
    overflow: hidden;

    box-shadow:
        4px 4px 0px rgba(65, 133, 196, 0.25),
        8px 8px 0px rgba(65, 133, 196, 0.20),
        12px 12px 20px rgba(65, 133, 196, 0.15);
}

.highlights-grid .nicebox,
.madewiththrixel-grid .nicebox {
    background: var(--col-darkback1a);
    color: var(--col-darkfore2);
}

.highlight-video {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

/* .highlights-grid .nicebox {
    border-left: 6px solid var(--col-lightaccent2);
}
*/
/* 
.nicebox:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
} */

/* .nicebox:last-child {
    margin-bottom: 0;
} */

.nicebox h3 {
    font-family: var(--sofiasans);
    font-size: 1.5rem;
    /* color: var(--col-lightfore2); */
    /* background: var(--col-darkback1); */
    position: relative;
    /* top: 0.5em; */
    /* left: -1em; */
    z-index: 2;
    text-align: center;
    margin: 0.35rem 1.5rem 0rem 1.2rem;
    border-radius: 8px;
    /* margin-bottom: 1rem; */
    font-weight: 700;
    font-style: italic;
    /* width: fit-content; */
    letter-spacing: -0.02em;
}

.nicebox p {
    color: var(--col-darkfore3);
    font-size: 1.05rem;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
    margin: -0.1rem 1.5rem 0.5rem 1.2rem;
}

/* About Section */
#about {
    background: white;
    padding-bottom: 2rem;
}

.about-content {
    max-width: 850px;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: var(--col-lightfore1);
    line-height: 1.8;
    text-align: center;
    font-weight: 400;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Founder Note Section */
#founder-note {
    background: white;
    padding-top: 2rem;
}

.founder-note-content {
    max-width: 850px;
    margin: 0 auto 3rem;
    background: #f8f9fb;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.founder-note-content h3 {
    font-size: 1.6rem;
    color: var(--col-lightaccent1);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.01em;
}

.founder-note-content p {
    font-size: 1.2rem;
    color: var(--col-lightfore1);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.founder-note-content p:last-child {
    margin-bottom: 0;
    font-style: normal;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 5rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--col-lightfore2);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.stat-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f8f9fb;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8ecf0;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--col-lightfore2);
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Process Section */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--col-lightaccent1) 0%, #4a8bc2 100%);
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--col-lightfore2);
    margin-bottom: 0.5rem;
}

.process-arrow {
    font-size: 2rem;
    color: #cbd5e0;
}

/* Team Section */
#team {
    background: #f8f9fb;
}

.team-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    margin-top: 3rem;
    justify-content: center;
}


.highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 600px));
}

.madewiththrixel-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 450px));
}

.team-member {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 400px;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.team-role {
    color: var(--col-lightaccent1);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.team-bio {
    color: #64748b;
    line-height: 1.7;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 3px solid #e2e8f0;
}

/* ChatGPT Moment Section */
.highlight-section {
    background: white;
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 4rem 0;
    border: 1px solid #e8ecf0;
}

.highlight-section h3 {
    font-size: 2rem;
    color: var(--col-lightfore2);
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-section p {
    color: #718096;
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: #f8f9fb;
    padding: 5rem 5%;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--col-lightfore2);
}

.newsletter-section p {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
}

.newsletter-input:focus {
    outline: none;
    border-color: #7eb9e8;
}

.newsletter-button {
    padding: 1rem 2.5rem;
    background: #7eb9e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background: #6ba8d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(126, 185, 232, 0.3);
}

/* Contact Section */
#contact {
    background: white;
}

#contact h2 {
    color: var(--col-lightfore2);
}

.contact-info {
    text-align: center;
    margin: 3rem 0;
}

.contact-email {
    font-size: 1.2rem;
    color: var(--col-lightaccent1);
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: #f8f9fb;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e8ecf0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--col-lightfore1);
}

input,
textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #7eb9e8;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #7eb9e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #6ba8d4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(126, 185, 232, 0.3);
}

/* Footer */
footer {
    background: var(--col-darkback1);
    color: var(--col-darkfore2);
    padding: 3.5rem 5% 2.5rem;
    border-top: 1px solid #2a3a52;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--col-darkfore1);
    font-family: var(--sofiasans);
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-logo img {
    height: 28px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: var(--col-darkfore3);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--col-darkfore1);
}

.footer-divider {
    max-width: 1200px;
    margin: 2rem auto;
    border: none;
    border-top: 1px solid #2a3a52;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        /* padding: 3% 4rem 5% 4rem; */
        /* min-height: 60vh; */
        height: 700px;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.25rem;
        margin-top: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
        line-height: 1.65;
    }

    .hero::before,
    .hero::after {
        width: 300px;
        height: 300px;
    }

    .hero .shape-1 {
        width: 55px;
        height: 55px;
        top: 10%;
        right: 10%;
    }

    .hero .shape-2 {
        width: 50px;
        height: 50px;
    }

    .hero .shape-3 {
        width: 45px;
        height: 45px;
    }

    .hero .shape-4 {
        width: 40px;
        height: 40px;
    }

    .hero .shape-5 {
        width: 55px;
        height: 55px;
    }

    .hero .shape-6 {
        width: 40px;
        height: 40px;
    }

    .hero .shape-7 {
        width: 45px;
        height: 45px;
    }

    .hero .shape-8 {
        width: 35px;
        height: 35px;
    }

    #nav-links {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav .container {
        column-gap: 1rem;
        row-gap: 1rem;
        justify-content: center;
    }

    .logo {
        flex: 0 1 100%;
        justify-content: center;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .nicebox h3 {
        font-size: 1.4rem;
    }

    .nicebox p {
        font-size: 1.05rem;
    }

    .about-content {
        font-size: 1.1rem;
    }

    .team-member h3 {
        font-size: 1.3rem;
    }

    .founder-note-content h3 {
        font-size: 1.4rem;
    }

    .founder-note-content p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .process-arrow {
        display: none;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    /*
    .hero-visual {
        height: 250px;
    }
    .hero-placeholder {
        height: 200px;
        font-size: 0.9rem;
    } */

}


@media (max-width: 1300px) {

    .hero .fadeout {
        height: 75px;
    }

    .herogallery-lefthalf {
        left: -7vw;

    }

    .herogallery-righthalf {
        right: -7vw;
    }
}

@media (max-width: 900px) {
    .herogallery-lefthalf {
        left: 2vw;

    }

    .herogallery-righthalf {
        right: 2vw;
    }
}


@media (max-width: 710px) {
    .hero h1 {
        margin-top: 0.5rem;
    }

    .herogallery-righthalf {
        transform: scale(1.2);
    }

    .herogallery-lefthalf {
        display: none;
        /* transform: scale(1.2) */
    }

    .hero .container {
        backdrop-filter: blur(4px);
        background: #eff5fb7c
    }
}


/* hamburger menu appears */
@media (max-width: 900px) {
    #nav-links>* {
        flex: 0 1 52%;
        text-align: center;
        margin: 0 auto;
    }

    #nav-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    nav .container {
        row-gap: 0px;
    }


    #nav-links.mobile-expanded {
        max-height: 350px;
        padding-top: 1rem;
    }

    #nav-links.mobile-collapsed {
        max-height: 0px;
        padding-top: 0px;
    }

    .nav-button-link {
        justify-content: center;
    }

    #nav-expando {
        display: block;
    }

    .nav-hidable-label {
        display: inline;
    }
}

/* Honeypot */
.form-hp {
    display: none;
}

/* Form Messages */
.form-message {
    display: none;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: #7eb9e8;
    color: white;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Submit Loading State */
.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}