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

html {
    scroll-behavior: smooth;
    overscroll-behavior-y: none;
}

:root {
    --_fonts---h2--size: clamp(2.5em, 7.5vw, 7.5em);
    --_fonts---h2--line-height: 80%;
    --_fonts---h2--letter-spacing: -.06em;
    --font-gt-expanded: 'GT America Expanded', Arial, sans-serif;
    --font-gt-extended: 'GT America Extended', Arial, sans-serif;
    --font-features: "dlig" on, "salt" on;
    --letter-spacing-tight: -0.04em;
    --letter-spacing-tighter: -0.06em;
    --separator-color: rgba(255, 255, 255, 0.3);
}

/* Utility Classes */
.font-gt-expanded {
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
}

.font-gt-extended {
    font-family: var(--font-gt-extended);
}

.text-body {
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

.separator {
    height: 1px;
    background-color: var(--separator-color);
}

.container-standard {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 2vw;
}

.container-wide {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2vw;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(3vh);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Consolidated fade-in for scaled elements */
.fade-in.fade-in-scaled {
    transform: translateY(3vh) scaleY(0.75);
}

.fade-in.fade-in-scaled.visible {
    transform: translateY(0) scaleY(0.75);
}

/* Also apply to section h2 elements */
.projects h2.fade-in,
.process h2.fade-in {
    transform: translateY(3vh) scaleY(0.75);
}

.projects h2.fade-in.visible,
.process h2.fade-in.visible {
    transform: translateY(0) scaleY(0.75);
}

body {
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #D7D2CB;
    background-color: #000;
    overscroll-behavior-y: none;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    padding-bottom: 12vh;
    flex: 1;
}

.container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 2vw;
}

/* Header & Navigation */
header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 2vh;
    z-index: 100;
    height: 7vh;
    width: 100%;
}

nav {
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 4vh;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2vw;
    margin: 0;
    padding: 0;
}

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

.nav-email a,
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-family: var(--font-gt-extended);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.nav-email a {
    font-size: clamp(0.75rem, 1vw, 1rem);
    letter-spacing: -0.02em;
    transform: scaleX(1.1);
}

.nav-email a:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: scaleX(1.1) scale(1.1);
}

.nav-links a:hover {
    color: #b3e5fc;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: #000;
    color: #fff;
    padding: 0;
    text-align: left;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    overflow: hidden;
    margin-top: 0;
}

.hero-top-left {
    position: absolute;
    left: 10%;
    top: 20%;
    z-index: 2;
    color: #fff;
    max-width: 30vw;
}

.hero-top-left-text,
.hero-bottom-right-primary-text {
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    font-feature-settings: var(--font-features);
    font-weight: 500;
    margin: 0;
    font-family: var(--font-gt-expanded);
    color: #fff;
    transform: scaleY(0.75);
}

.hero-bottom-right-primary-text {
    text-align: right;
}

.hero-bottom-right-primary {
    position: absolute;
    right: 10%;
    bottom: 20%;
    z-index: 2;
    max-width: 35vw;
    width: 35vw;
}

.hero-bottom-left {
    position: absolute;
    left: 10%;
    bottom: 10%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vh;
}

.hero-bottom-left-title {
    color: #fff;
    font-size: clamp(0.9rem, 1.4vw, 1.4rem);
    font-weight: 500;
    margin: 0;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    width: 10vw;
}

.hero-bottom-left-separator,
.hero-bottom-right-secondary-separator {
    width: 10vw;
    height: 1px;
    background: #fff;
    opacity: 0.6;
}

.hero-bottom-left-text {
    color: #fff;
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    font-weight: 300;
    margin: 0;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.5;
    width: 20vw;
}

.hero-bottom-right-secondary {
    position: absolute;
    right: 10%;
    bottom: 10%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vh;
    width: 25vw;
}

.hero-bottom-right-secondary-separator {
    width: 100%;
}

.hero-bottom-right-secondary-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-bottom-right-secondary-text {
    color: #fff;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-weight: 300;
    margin: 0;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tighter);
}

.hero-tagline {
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    font-feature-settings: var(--font-features);
    font-weight: 500;
    color: #fff;
    font-family: var(--font-gt-expanded);
    margin: 0;
    text-align: right;
    transform: scaleY(0.75);
}

/* Computer Monitor */
.computer-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.computer-monitor {
    position: relative;
    width: 35vw;
    height: 45vh;
}

.computer-screen {
    width: 100%;
    height: 85%;
    background: #1a1a1a;
    border: 0.8vh solid #2a2a2a;
    border-radius: 0.8vh 0.8vh 0.2vh 0.2vh;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 15vw rgba(179, 229, 252, 0.6),
        0 0 25vw rgba(232, 213, 255, 0.4);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.screen-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e8d5ff 40%, #b3e5fc 100%);
    background-size: 100% 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
    opacity: 0.4;
    pointer-events: none;
}

.screen-text {
    position: relative;
    z-index: 1;
    color: #000;
}

.hero-line-2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
    font-family: 'Ivypresto Text', serif;
    letter-spacing: -0.03em;
}

.computer-base {
    display: none;
    width: 200px;
    height: 20px;
    background: #2a2a2a;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
    position: relative;
}

.computer-base::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 2px;
}

.ux-animated {
    position: relative;
    display: inline-block;
    background: none;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(45deg, #00C8B3, #00C0E8, #6155F5, #CB30E0, #FF2D55);
    background-size: 300% 300%;
    animation: gradient-move 4s ease infinite;
    filter: contrast(1.2) brightness(1.1);
}

.ux-animated::before {
    content: 'UX';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    background-image: linear-gradient(135deg, #13322B, #971B2F, #D7D2CB, #13322B);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-move-2 5s ease infinite;
    opacity: 0.7;
    mix-blend-mode: overlay;
    filter: blur(0.5px);
    pointer-events: none;
}

.ux-animated::after {
    content: 'UX';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: grain-move 0.5s steps(4) infinite;
    pointer-events: none;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient-move-2 {
    0% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 100% 0%;
    }
}

@keyframes grain-move {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-1px, 1px);
    }
    50% {
        transform: translate(1px, -1px);
    }
    75% {
        transform: translate(-1px, -1px);
    }
    100% {
        transform: translate(1px, 1px);
    }
}

.subtitle {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.description {
    font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    margin-top: 0.5vh;
    margin-bottom: 2vh;
    max-width: 40vw;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5vw;
    color: #fff;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-weight: 300;
    z-index: 2;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-1vh);
    }
    60% {
        transform: translateY(-0.5vh);
    }
}

.cta-button {
    display: inline-block;
    padding: 1vh 2.5vw;
    background-color: #D7D2CB;
    color: #971B2F;
    text-decoration: none;
    border-radius: 0.5vh;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-0.2vh);
    box-shadow: 0 0.5vh 1.5vh rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 5vh 2vw;
    background-color: #000;
}

/* Mission Section */
.mission {
    padding: 4vh 2vw;
    background-color: #000;
}

.mission .container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2vw;
}

.mission-content {
    display: flex;
    align-items: flex-start;
    gap: 5vw;
}

.mission-title-stack,
.why-join-title-stack {
    position: relative;
    flex: 0 0 auto;
    width: 40vw;
    min-height: 5em;
    overflow: visible;
    padding-bottom: 1.5em;
}

.mission-title,
.why-join-title {
    margin: 0;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    transform: scaleY(0.75);
    position: relative;
    background-color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    padding: 0;
}

.mission-title {
    text-align: left;
}

.why-join-title {
    text-align: right;
}

.mission-title-1,
.why-join-title-1 {
    position: relative;
    z-index: 7;
    opacity: 1;
    background-color: transparent;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: none;
    color: #fff;
    padding: 0;
    margin: 0;
}

.mission-title-2 {
    position: absolute;
    top: 0.10em;
    left: -0.1em;
    opacity: 0.85;
    z-index: 4;
}

.mission-title-3 {
    position: absolute;
    top: 0.2em;
    left: -0.2em;
    opacity: 0.7;
    z-index: 3;
}

.mission-title-4 {
    position: absolute;
    top: 0.30em;
    left: -0.3em;
    opacity: 0.85;
    z-index: 2;
}

.mission-title-5 {
    position: absolute;
    top: 0.4em;
    left: -0.4em;
    opacity: 0.55;
    z-index: 1;
}

.why-join-title-2 {
    position: absolute;
    top: 0.10em;
    right: 0.1em;
    opacity: 0.85;
    z-index: 6;
}

.why-join-title-3 {
    position: absolute;
    top: 0.2em;
    right: 0.2em;
    opacity: 0.7;
    z-index: 5;
}

.why-join-title-4 {
    position: absolute;
    top: 0.30em;
    right: 0.3em;
    opacity: 0.85;
    z-index: 4;
}

.why-join-title-5 {
    position: absolute;
    top: 0.4em;
    right: 0.4em;
    opacity: 0.55;
    z-index: 3;
}

.mission-text {
    flex: 1;
    max-width: 45vw;
}

.mission-text p {
    color: #fff;
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    font-weight: 300;
    margin: 0;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.5;
    text-align: left;
}

/* Projects Section */
.projects {
    padding: 5vh 2vw;
    background-color: #000;
    text-align: center;
}

.projects h2,
.process-title-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 2rem 0;
}

.process-title-wrapper h2 {
    margin: 0;
    color: #fff;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    transform: scaleY(0.75);
    transition: transform 0.3s ease;
    padding-bottom: 1em;
    position: relative;
    z-index: 1;
}

.process h2:hover {
    transform: scaleY(0.75) scale(1.05);
}

.process-title-doodle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.process-title-wrapper.visible .process-title-doodle {
    opacity: 1;
}

.process-title-doodle path,
.process-title-doodle rect,
.process-title-doodle circle,
.process-title-doodle polygon {
    stroke-dashoffset: 1000;
    fill: none;
}

.process-title-doodle polygon {
    fill: rgba(255,255,255,0.5);
    stroke: none;
    opacity: 0;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(1) {
    animation: draw-doodle 1s ease-in-out 0s forwards;
}

.process-title-wrapper.visible .process-title-doodle polygon:nth-child(2) {
    animation: fade-in-arrow 0.3s ease-in-out 0.2s forwards;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(3) {
    animation: draw-doodle 1s ease-in-out 0.1s forwards;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(4) {
    animation: draw-doodle 1s ease-in-out 0.2s forwards;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(5) {
    animation: draw-doodle 1s ease-in-out 0.3s forwards;
}

.process-title-wrapper.visible .process-title-doodle polygon:nth-child(6) {
    animation: fade-in-arrow 0.3s ease-in-out 0.5s forwards;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(7) {
    animation: draw-doodle 1s ease-in-out 0.4s forwards;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(8) {
    animation: draw-doodle 1s ease-in-out 0.5s forwards;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(9) {
    animation: draw-doodle 1s ease-in-out 0.6s forwards;
}

.process-title-wrapper.visible .process-title-doodle > *:nth-child(10) {
    animation: draw-doodle 1s ease-in-out 0.7s forwards;
}

.process-header-link {
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

.process h2:hover {
    transform: scaleY(0.75) scale(1.05);
}

.projects p {
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    color: #D7D2CB;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    gap: 5vw;
    max-width: 80vw;
    margin: 0 auto;
}

.project-logo {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
    margin-bottom: 20vh;
}

.project-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.project-logo img {
    height: 10vh;
    width: auto;
    object-fit: contain;
}

/* Projects Detail Page */
.projects-detail {
    padding: 5vh 2vw;
    background-color: #000;
}

.projects-detail h2 {
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    transform: scaleY(0.75);
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
}

.projects-detail h2.fade-in {
    transform: translateY(3vh) scaleY(0.75);
}

.projects-detail h2.fade-in.visible {
    transform: translateY(0) scaleY(0.75);
}

.project-detail-card {
    max-width: 60vw;
    margin: 0 auto;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3vh;
    border-radius: 0.8vh;
    text-align: center;
}

.project-detail-card img {
    max-height: 15vh;
    width: auto;
    margin-bottom: 2vh;
    object-fit: contain;
}

.project-content h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

.project-content p {
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    color: #D7D2CB;
    line-height: 1.8;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

.about .container {
    max-width: 53vw;
    text-align: center;
}

.about h2 {
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    transform: scaleY(0.75);
    margin-bottom: 1.5rem;
    color: #fff;
}

.about h2.fade-in {
    transform: translateY(3vh) scaleY(0.75);
}

.about h2.fade-in.visible {
    transform: translateY(0) scaleY(0.75);
}

.about p {
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    color: #D7D2CB;
    line-height: 1.8;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

/* Services Section */
.services {
    padding: 5vh 2vw;
    background-color: #000;
}

.services h2 {
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    transform: scaleY(0.75);
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
}

.services h2.fade-in {
    transform: translateY(3vh) scaleY(0.75);
}

.services h2.fade-in.visible {
    transform: translateY(0) scaleY(0.75);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
    gap: 2vw;
    max-width: 80vw;
    margin: 0 auto;
}

.service-card {
    padding: 2vh;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.8vh;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-0.5vh);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-card h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

.service-card p {
    color: #D7D2CB;
    line-height: 1.7;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

/* Contact Section */
.contact {
    padding: 5vh 2vw;
    background-color: #000;
    text-align: center;
}

.contact h2 {
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    transform: scaleY(0.75);
    margin-bottom: 1.5rem;
    margin-top: 5vh;
    color: #fff;
}

.contact h2.fade-in {
    transform: translateY(3vh) scaleY(0.75);
}

.contact h2.fade-in.visible {
    transform: translateY(0) scaleY(0.75);
}

.contact p {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: #D7D2CB;
    margin-bottom: 2vh;
    max-width: 40vw;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

.contact-info {
    background-color: transparent;
    padding: 2vh;
    max-width: 70vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
    justify-content: center;
    min-height: 40vh;
}

.email-box-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    width: 100%;
}

.email-arrow {
    width: 180px;
    height: 150px;
    flex-shrink: 0;
}

.email-arrow path,
.email-arrow rect,
.email-arrow circle,
.email-arrow polygon {
    stroke-dashoffset: 1000;
    fill: none;
}

.email-arrow polygon {
    fill: rgba(255,255,255,0.5);
    stroke: none;
    opacity: 0;
}

.contact-info.visible .email-arrow-left > *:nth-child(1) {
    animation: draw-doodle 1s ease-in-out 0s forwards;
}

.contact-info.visible .email-arrow-left polygon:nth-child(2) {
    animation: fade-in-arrow 0.3s ease-in-out 0.2s forwards;
}

.contact-info.visible .email-arrow-left > *:nth-child(3) {
    animation: draw-doodle 1s ease-in-out 0.1s forwards;
}

.contact-info.visible .email-arrow-left > *:nth-child(4) {
    animation: draw-doodle 1s ease-in-out 0.2s forwards;
}

.contact-info.visible .email-arrow-right > *:nth-child(1) {
    animation: draw-doodle 1s ease-in-out 0.3s forwards;
}

.contact-info.visible .email-arrow-right polygon:nth-child(2) {
    animation: fade-in-arrow 0.3s ease-in-out 0.5s forwards;
}

.contact-info.visible .email-arrow-right > *:nth-child(3) {
    animation: draw-doodle 1s ease-in-out 0.4s forwards;
}

.contact-info.visible .email-arrow-right > *:nth-child(4) {
    animation: draw-doodle 1s ease-in-out 0.5s forwards;
}

.email-box {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 0.8rem;
    min-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.2s;
    will-change: transform;
}

.email-box:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.email-box:active {
    transform: scale(0.98);
}

.email-box-inner {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 55px;
    overflow: hidden;
    height: 80px;
}

.email-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    height: 100%;
}

.email-text p {
    margin: 0;
    color: #000;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    font-weight: 600;
}

.email-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

.email-icon-circle svg {
    width: 36px;
    height: 36px;
    color: #000;
}

.copy-feedback {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

/* Contact Buttons Container */
.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3vh;
    width: 100%;
}

/* GroupMe Button */
.groupme-button,
.wugo-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 1rem 2.5rem;
    min-width: 300px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.groupme-button:hover,
.wugo-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.groupme-button:active,
.wugo-button:active {
    transform: translateY(0);
}

.groupme-icon,
.wugo-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Team Section */
.team {
    padding: 5vh 2vw;
    background-color: #000;
    min-height: calc(100vh - 20vh);
    padding-bottom: 12vh;
}

.team h2 {
    font-size: var(--_fonts---h2--size);
    line-height: var(--_fonts---h2--line-height);
    letter-spacing: var(--_fonts---h2--letter-spacing);
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    transform: scaleY(0.75);
    margin-bottom: 3rem;
    margin-top: 5vh;
    text-align: center;
    color: #fff;
}

.team h2.fade-in {
    transform: translateY(3vh) scaleY(0.75);
}

.team h2.fade-in.visible {
    transform: translateY(0) scaleY(0.75);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3vw;
    max-width: 80vw;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 100%;
    max-width: 15vw;
    height: 30vh;
    object-fit: cover;
    border-radius: 20%;
    margin-bottom: 1.5vh;
    box-shadow: 0 0.5vh 1.5vh rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    color: #fff;
    margin-top: 1rem;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

.team-member p {
    color: #D7D2CB;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    margin: 0.3rem 0;
}

.linkedin-dropdown {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 100%;
    max-width: 15vw;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}

.team-member:hover .linkedin-dropdown {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.linkedin-dropdown a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.linkedin-dropdown a:hover {
    color: #b3e5fc;
}

/* Why Join Section */
.why-join {
    background-color: #000;
    padding: 5vh 2vw;
    padding-bottom: 3vh;
    text-align: center;
    position: relative;
    color: white;
}

.why-join .container {
    max-width: 90vw;
    margin: 0 auto;
    padding: 0 2vw;
}

.why-join-content {
    display: flex;
    align-items: flex-start;
    gap: 5vw;
    flex-direction: row-reverse;
}

.why-join-text {
    flex: 1;
    max-width: 45vw;
}

.why-join-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-join-box-row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.why-join-box {
    color: #fff;
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    font-weight: 300;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.5;
    text-align: left;
    padding: 1.5rem;
    border: none;
    flex: 1;
}

.why-join-box-row .why-join-box:first-child {
    border-top: 1px solid var(--separator-color);
    border-left: 1px solid var(--separator-color);
}

.why-join-box-row .why-join-box:last-child {
    border-top: 1px solid var(--separator-color);
    border-right: 1px solid var(--separator-color);
}

.why-join-box-bottom {
    border-bottom: 1px solid var(--separator-color);
    border-left: 1px solid var(--separator-color);
    border-right: 1px solid var(--separator-color);
    width: 100%;
    margin: 0 auto;
}

.why-join-box p {
    margin: 0;
    color: #fff;
}

.why-join-separator {
    width: 1px;
    height: 100%;
    min-height: 20vh;
    background-color: var(--separator-color);
    flex-shrink: 0;
}

.skills-caravan-section {
    background-color: #000;
    padding: 3vh 0;
    overflow: hidden;
}

.skills-caravan-wrapper {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 2vw;
}

.skills-caravan-wrapper h3 {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 500;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    text-align: left;
}

.skills-caravan-container {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
}

.skills-caravan {
    display: flex;
    gap: 1.5rem;
    animation: caravan-scroll 30s linear infinite;
    width: fit-content;
}

@keyframes caravan-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.skill-tool-item {
    color: #fff;
    font-size: clamp(0.8rem, 1vw, 1rem);
    font-weight: 300;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.5;
    text-align: center;
    padding: 1rem 2rem;
    border: 1px solid var(--separator-color);
    border-radius: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.skill-tool-item p {
    margin: 0;
    color: #fff;
}

/* Process Section */
.process {
    padding: 5vh 2vw;
    background-color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process .container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 2vw;
    position: relative;
    z-index: 1;
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: start;
    gap: 5vw;
    max-width: 80vw;
    margin: 0 auto;
}

.process-step {
    color: #fff;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    text-align: center;
    max-width: 25vw;
    position: relative;
    padding: 2rem;
}

.process-step-content {
    position: relative;
    z-index: 1;
}

.process-doodle {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
}

.process-step.visible .process-doodle {
    opacity: 1;
}

.process-doodle path,
.process-doodle rect,
.process-doodle circle,
.process-doodle polygon {
    stroke-dashoffset: 1000;
    fill: none;
}

.process-doodle polygon {
    fill: rgba(255,255,255,0.5);
    stroke: none;
    opacity: 0;
}

.process-step.visible .process-doodle-1 polygon:nth-child(2) {
    animation: fade-in-arrow 0.3s ease-in-out 0.2s forwards;
}

.process-step.visible .process-doodle-1 polygon:nth-child(6) {
    animation: fade-in-arrow 0.3s ease-in-out 0.7s forwards;
}

.process-step.visible .process-doodle-2 polygon:nth-child(2) {
    animation: fade-in-arrow 0.3s ease-in-out 0.2s forwards;
}

.process-step.visible .process-doodle-2 polygon:nth-child(4) {
    animation: fade-in-arrow 0.3s ease-in-out 0.5s forwards;
}

.process-step.visible .process-doodle-3 polygon:nth-child(2) {
    animation: fade-in-arrow 0.3s ease-in-out 0.3s forwards;
}

.process-step.visible .process-doodle-3 polygon:nth-child(4) {
    animation: fade-in-arrow 0.3s ease-in-out 0.4s forwards;
}

.process-step.visible .process-doodle-3 polygon:nth-child(6) {
    animation: fade-in-arrow 0.3s ease-in-out 0.7s forwards;
}

@keyframes fade-in-arrow {
    to {
        opacity: 1;
    }
}

.process-step.visible .process-doodle-1 > *:nth-child(1) {
    animation: draw-doodle 1s ease-in-out 0s forwards;
}

.process-step.visible .process-doodle-1 > *:nth-child(2) {
    animation: draw-doodle 1s ease-in-out 0.1s forwards;
}

.process-step.visible .process-doodle-1 > *:nth-child(3) {
    animation: draw-doodle 1s ease-in-out 0.2s forwards;
}

.process-step.visible .process-doodle-1 > *:nth-child(4) {
    animation: draw-doodle 1s ease-in-out 0.3s forwards;
}

.process-step.visible .process-doodle-1 > *:nth-child(5) {
    animation: draw-doodle 1s ease-in-out 0.4s forwards;
}

.process-step.visible .process-doodle-1 > *:nth-child(6) {
    animation: draw-doodle 1s ease-in-out 0.5s forwards;
}

.process-step.visible .process-doodle-2 > *:nth-child(1) {
    animation: draw-doodle 1s ease-in-out 0s forwards;
}

.process-step.visible .process-doodle-2 > *:nth-child(2) {
    animation: draw-doodle 1s ease-in-out 0.1s forwards;
}

.process-step.visible .process-doodle-2 > *:nth-child(3) {
    animation: draw-doodle 1s ease-in-out 0.2s forwards;
}

.process-step.visible .process-doodle-2 > *:nth-child(4) {
    animation: draw-doodle 1s ease-in-out 0.3s forwards;
}

.process-step.visible .process-doodle-2 > *:nth-child(5) {
    animation: draw-doodle 1s ease-in-out 0.4s forwards;
}

.process-step.visible .process-doodle-2 > *:nth-child(6) {
    animation: draw-doodle 1s ease-in-out 0.5s forwards;
}

.process-step.visible .process-doodle-3 > *:nth-child(1) {
    animation: draw-doodle 1s ease-in-out 0s forwards;
}

.process-step.visible .process-doodle-3 > *:nth-child(2) {
    animation: draw-doodle 1s ease-in-out 0.1s forwards;
}

.process-step.visible .process-doodle-3 > *:nth-child(3) {
    animation: draw-doodle 1s ease-in-out 0.2s forwards;
}

.process-step.visible .process-doodle-3 > *:nth-child(4) {
    animation: draw-doodle 1s ease-in-out 0.3s forwards;
}

.process-step.visible .process-doodle-3 > *:nth-child(5) {
    animation: draw-doodle 1s ease-in-out 0.4s forwards;
}

.process-step.visible .process-doodle-3 > *:nth-child(6) {
    animation: draw-doodle 1s ease-in-out 0.5s forwards;
}

@keyframes draw-doodle {
    to {
        stroke-dashoffset: 0;
    }
}

.process-step-number {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-gt-expanded);
    opacity: 0.5;
}

.process-step h3 {
    color: #fff;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 500;
    margin: 0;
    margin-bottom: 1rem;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
}

.process-step p {
    color: #D7D2CB;
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    font-weight: 300;
    margin: 0;
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 5vh 2vw;
    padding-bottom: 5vh;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 2vw;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: var(--separator-color);
    align-self: flex-start;
}

.footer-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
}

.footer-email-link,
.footer-copyright,
.footer-credit {
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-family: var(--font-gt-expanded);
    font-feature-settings: var(--font-features);
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
}

.footer-email-link {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
    opacity: 1;
}

.footer-email-link:hover {
    color: #b3e5fc;
}

.footer-copyright,
.footer-credit {
    color: #fff;
    opacity: 0.7;
}

/* Section Separator */
.section-separator {
    width: 75%;
    height: 1px;
    background-color: var(--separator-color);
    margin: 5vh auto;
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    :root {
        --_fonts---h2--size: clamp(2.5em, 5.5vw, 5.5em);
    }

    .container {
        max-width: 90vw;
    }

    .mission-content,
    .why-join-content {
        gap: 3vw;
    }

    .mission-title-stack,
    .why-join-title-stack {
        width: 35vw;
    }

    .mission-text,
    .why-join-text {
        max-width: 50vw;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --_fonts---h2--size: clamp(2em, 4vw, 4em);
    }

    /* Navigation */
    header {
        top: 1vh;
        height: auto;
    }

    nav {
        padding: 0.8rem 5%;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: clamp(0.75rem, 0.9vw, 0.9rem);
        flex-wrap: wrap;
    }

    .nav-email {
        font-size: clamp(0.7rem, 0.85vw, 0.85rem);
    }

    .nav-email a {
        transform: scaleX(1);
    }

    /* Hero Section */
    .hero {
        padding-left: 3%;
        padding-right: 3%;
    }

    .hero-top-left {
        left: 5%;
        top: 15%;
        max-width: 45vw;
    }

    .hero-bottom-right-primary {
        right: 5%;
        bottom: 25%;
        max-width: 45vw;
        width: 45vw;
    }

    .hero-bottom-left {
        left: 5%;
        bottom: 8%;
    }

    .hero-bottom-left-title {
        font-size: clamp(0.9rem, 1.2vw, 1.2rem);
        width: 30vw;
    }

    .hero-bottom-left-text {
        font-size: clamp(0.85rem, 1vw, 1rem);
        width: 35vw;
    }

    .hero-bottom-left-separator {
        width: 30vw;
    }

    .hero-bottom-right-secondary {
        right: 5%;
        bottom: 8%;
        width: 35vw;
    }

    .computer-container {
        width: 60vw;
        height: 40vh;
    }

    /* Mission & Why Join Sections */
    .mission-content,
    .why-join-content {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .mission-title-stack,
    .why-join-title-stack {
        width: 100%;
        max-width: 90vw;
        text-align: center;
    }

    .why-join-title-stack {
        text-align: center;
    }

    .mission-title,
    .why-join-title {
        text-align: center;
    }

    .mission-text,
    .why-join-text {
        max-width: 100%;
        text-align: center;
    }

    .why-join-boxes {
        max-width: 100%;
    }

    .why-join-box-row {
        flex-direction: column;
    }

    .why-join-box {
        width: 100%;
    }

    /* Projects Section */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .project-logo img {
        height: 8vh;
    }

    /* Process Section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-step h3 {
        font-size: clamp(1.5rem, 1.8vw, 1.8rem);
    }

    /* Skills Caravan */
    .skills-caravan-wrapper {
        max-width: 95%;
    }

    .skills-caravan-wrapper h3 {
        font-size: clamp(1.2rem, 1.5vw, 1.5rem);
        width: 100%;
    }

    .skills-caravan-container {
        width: 100%;
    }

    /* Why Join Separator */
    .why-join-separator {
        display: none;
    }

    /* Contact Section */
    .contact-info {
        max-width: 90vw;
        min-height: 30vh;
    }

    .email-box-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .email-arrow {
        width: 120px;
        height: 100px;
    }

    .email-box {
        min-width: 90%;
        max-width: 90%;
    }

    .contact p {
        max-width: 80vw;
        font-size: clamp(0.9rem, 1.2vw, 1.2rem);
    }

    .contact-buttons {
        gap: 1.2rem;
        margin-top: 2.5vh;
    }

    .groupme-button,
    .wugo-button {
        min-width: 80%;
        padding: 0.9rem 2rem;
        font-size: clamp(0.85rem, 1vw, 1rem);
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-separator {
        width: 80%;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-member img {
        max-width: 20vw;
        height: 25vh;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    :root {
        --_fonts---h2--size: clamp(2em, 2.5vw, 2.5em);
    }

    /* Navigation */
    nav {
        padding: 0.6rem 3%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1rem;
        font-size: clamp(0.7rem, 0.85vw, 0.85rem);
        width: 100%;
        justify-content: flex-start;
    }

    .nav-email {
        font-size: clamp(0.65rem, 0.75vw, 0.75rem);
        margin-top: 0.5rem;
    }

    /* Hero Section */
    .hero {
        padding-left: 2%;
        padding-right: 2%;
    }

    .hero-top-left {
        left: 3%;
        top: 12%;
        max-width: 90vw;
    }

    .hero-bottom-right-primary {
        right: 3%;
        bottom: 30%;
        max-width: 90vw;
        width: 90vw;
    }

    .hero-bottom-right-primary-text {
        text-align: left;
    }

    .hero-bottom-left {
        left: 3%;
        bottom: 5%;
        max-width: 90vw;
    }

    .hero-bottom-left-title {
        font-size: clamp(0.85rem, 1vw, 1rem);
        width: 100%;
    }

    .hero-bottom-left-text {
        font-size: clamp(0.8rem, 0.9vw, 0.9rem);
        width: 100%;
    }

    .hero-bottom-left-separator {
        width: 100%;
    }

    .hero-bottom-right-secondary {
        display: none;
    }

    .computer-container {
        width: 80vw;
        height: 30vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Mission & Why Join Sections */
    .mission,
    .why-join {
        padding: 3vh 1vw;
    }

    .mission-title-stack,
    .why-join-title-stack {
        min-height: 3em;
        padding-bottom: 1em;
    }

    .mission-text p,
    .why-join-text p {
        font-size: clamp(0.8rem, 0.95vw, 0.95rem);
    }

    /* Projects Section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-logo {
        margin-bottom: 5vh;
    }

    .project-logo img {
        height: 6vh;
    }

    /* Process Section */
    .process {
        padding: 3vh 1vw;
    }

    .process-step h3 {
        font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    }

    .process-step p {
        font-size: clamp(0.8rem, 0.95vw, 0.95rem);
    }

    /* Skills Caravan */
    .skills-caravan-wrapper {
        max-width: 98%;
        padding: 0 1vw;
    }

    .skills-caravan-wrapper h3 {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
        width: 100%;
    }

    .skills-caravan-container {
        width: 100%;
    }

    .skill-tool-item {
        padding: 0.5rem 1rem;
        font-size: clamp(0.7rem, 0.85vw, 0.85rem);
    }

    /* Why Join Separator */
    .why-join-separator {
        display: none;
    }

    /* Contact Section */
    .contact {
        padding: 3vh 1vw;
    }

    .contact h2 {
        margin-top: 3vh;
    }

    .contact p {
        font-size: clamp(0.85rem, 1vw, 1rem);
        max-width: 90vw;
    }

    .email-box-wrapper {
        gap: 1.5rem;
    }

    .email-arrow {
        width: 80px;
        height: 70px;
    }

    .email-box {
        min-width: 95%;
        max-width: 95%;
        height: 60px;
        padding: 0.6rem;
    }

    .email-text p {
        font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    }

    .email-icon-circle {
        width: 50px;
        height: 50px;
    }

    .contact-buttons {
        gap: 1rem;
        margin-top: 2vh;
    }

    .groupme-button,
    .wugo-button {
        min-width: 90%;
        padding: 0.8rem 1.5rem;
        font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    }

    .groupme-icon,
    .wugo-icon {
        width: 20px;
        height: 20px;
    }

    .email-icon-circle svg {
        width: 24px;
        height: 24px;
    }

    /* Footer */
    .footer {
        padding: 3vh 2vw;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-copyright,
    .footer-email-link {
        font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    }

    .footer-separator {
        width: 90%;
    }

    /* Team Section */
    .team {
        padding: 3vh 1vw;
    }

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

    .team-member img {
        max-width: 50vw;
        height: 30vh;
    }

    .team-member h3 {
        font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    }

    .team-member p {
        font-size: clamp(0.7rem, 0.85vw, 0.85rem);
    }

    /* Section Separators */
    .section-separator {
        width: 90%;
    }
}
