html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

/* -----------------------------------------------------------
   AMPLISYNTH - MOBILE OPTIMIZED
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --grid-color: rgba(255, 255, 255, 0.03);
    --green-primary: #10b981;
    --green-glow: #34d399;
    --text-white: #ffffff;
    --text-grey: #9ca3af;
    --text-light-grey: #d1d5db;
    --glass-bg: rgba(20, 20, 20, 0.3);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* -----------------------------------------------------------
   GLOBAL RESET
----------------------------------------------------------- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
    padding-right: 0;
}

/* -----------------------------------------------------------
   CUSTOM SCROLLBAR
----------------------------------------------------------- */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--green-primary) rgba(0, 0, 0, 0);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-track-piece {
    background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background-color: var(--green-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--green-glow);
}

::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0);
}

/* -----------------------------------------------------------
   APTOS FONT FOR ALL TITLES
----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.hero h1,
.why-section h2,
.about-section h2,
.section-subtitle,
.contact-header h2,
.press-text h2,
.testimonials-section h2,
.feature-card h3,
.use-case h4,
.team-member h4,
.advisor h4,
.contact-info-card h3,
.contact-details h4 {
    font-family: "Aptos Display", "Aptos", sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
}

/* -----------------------------------------------------------
   ANIMATED GRID BACKGROUND WITH MOVING DOTS
----------------------------------------------------------- */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: #0a0a0a;
}

#gridCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* -----------------------------------------------------------
   NAVIGATION WITH HAMBURGER MENU
----------------------------------------------------------- */
.navbar {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; 
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.logo {
    display: block;
    height: 32px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 110px; 
    width: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { 
    color: white; 
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    z-index: 10;
}

.badge-container {
    margin-bottom: 50px;
}

.support-text {
    display: block; 
    color: var(--text-grey);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 5px !important; 
    padding: 0;
    position: relative;
    z-index: 2;
}

.supporter-name {
    margin-top: 0 !important;
    padding-top: 0 !important;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 0.8 !important; 
    display: block;
}

.tagline-pill {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--green-primary);
    color: var(--green-primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 30px;
    background: rgba(16, 185, 129, 0.05);
}

.hero h1 {
    font-size: 4rem; 
    line-height: 1.1;
    font-weight: 600; 
    letter-spacing: -0.03em;
    margin-bottom: 25px;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light-grey);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn {
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--green-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--green-glow);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* -----------------------------------------------------------
   FEATURES SECTION
----------------------------------------------------------- */
.features-section {
    padding: 60px 40px;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.feature-grid-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    background: rgba(20, 20, 20, 0.1); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-light-grey);
    font-size: 1rem;
    line-height: 1.7;
}

.feature-card em {
    font-style: italic;
    color: white;
}

/* -----------------------------------------------------------
   WHY DNA SYNTHESIS SECTION
----------------------------------------------------------- */
.why-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.why-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.why-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-grey);
    margin-bottom: 60px;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    text-align: left;
    margin-bottom: 60px;
}

.use-case {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.use-case-num {
    color: var(--green-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.use-case h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.use-case p {
    color: var(--text-light-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.why-footer {
    font-size: 1.1rem;
    color: var(--text-light-grey);
    font-style: italic;
}

/* -----------------------------------------------------------
   ABOUT SECTION
----------------------------------------------------------- */
.about-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
}

.team-grid, .advisors-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;              
    max-width: 1100px;       
    margin: 0 auto 80px auto;
}

.team-member, .advisor {
    display: grid;
    grid-template-columns: 380px 1fr; 
    grid-template-rows: auto 1fr;
    column-gap: 60px;
    row-gap: 16px;
    text-align: left;
    align-items: start;
    margin: 0;
    padding: 0;
}

.team-member img, .advisor img {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 380px;
    height: 500px; 
    object-fit: cover;
    object-position: center top;
    border-radius: 32px; 
    border: 1px solid var(--glass-border);
    margin: 0;
}

.team-member:first-child img {
    object-position: 70% top !important; 
    background-color: var(--glass-bg); 
}

.team-member h4, .advisor h4 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    align-self: end;
}

.team-member ul, .advisor ul {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    list-style-type: disc; 
    padding-left: 20px; 
    color: var(--text-light-grey);
}

.team-member li, .advisor li {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 8px;
    color: var(--text-light-grey);
}

.team-member li::before, .advisor li::before {
    content: none !important;
    display: none;
}

/* -----------------------------------------------------------
   TESTIMONIALS SECTION - INFINITE SCROLL MARQUEE
----------------------------------------------------------- */
.testimonials-section {
    padding: 80px 40px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.03em;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollInfinite 30s linear infinite;
}

.testimonial-slider:hover .slider-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 450px;
    flex-shrink: 0;
    background: rgba(20, 20, 20, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(16, 185, 129, 0.6);
    background: rgba(20, 20, 20, 0.3);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
    z-index: 20;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-white);
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--text-grey);
    font-style: normal;
    display: block;
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* -----------------------------------------------------------
   PRESS RELEASE SECTION
----------------------------------------------------------- */
.press-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.press-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.press-label {
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.press-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.press-image {
    flex: 1;
}

.press-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.15);
}

.press-text {
    flex: 1.2;
}

.press-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: white;
}

.press-lead {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.press-text p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 20px;
}

.press-link {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: transform 0.2s;
}

.press-link:hover {
    transform: translateX(5px);
}

/* -----------------------------------------------------------
   INTEGRATED CONTACT SECTION
----------------------------------------------------------- */
.contact-integrated-section {
    padding: 80px 40px;
    position: relative;
    z-index: 10;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card,
.contact-form-card {
    background: rgba(20, 20, 20, 0.3);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow: inset 2px 4px 16px rgba(248, 248, 248, 0.06);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.icon-background {
    width: 40px;
    height: 40px;
    background-color: var(--green-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background img {
    width: 24px;
    height: 24px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.contact-info-card p {
    color: var(--text-light-grey);
    line-height: 1.7;
    opacity: 0.8;
}

.contact-details {
    margin-top: 24px;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-light-grey);
}

.contact-label {
    opacity: 0.8;
}

.contact-item a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--green-primary);
}

.social-link {
    display: inline-block;
    margin-top: 16px;
}

.social-link img {
    width: 20px;
    height: 20px;
    transition: filter 0.2s;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.required {
    color: var(--green-primary);
}

.form-group input,
.form-group textarea {
    background: rgba(116, 116, 116, 0.07);
    border: 1px solid rgba(33, 33, 32, 1);
    border-radius: 12px;
    padding: 12px 18px;
    color: white;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-grey);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    margin-top: 8px;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 60px 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text-grey);
}

.footer-col a {
    display: block;
    color: var(--text-light-grey);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col a:hover {
    color: var(--green-primary);
}

.footer-col img {
    height: 16px;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-grey);
    font-size: 0.85rem;
}

.cookie-settings {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.cookie-settings:hover {
    color: white;
}

/* -----------------------------------------------------------
   LOAD ANIMATIONS
----------------------------------------------------------- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Initial hidden state - only before loaded */
body:not(.loaded) .navbar,
body:not(.loaded) .hero .badge-container,
body:not(.loaded) .hero .tagline-pill,
body:not(.loaded) .hero h1,
body:not(.loaded) .hero p,
body:not(.loaded) .hero .cta-group,
body:not(.loaded) .feature-card {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    visibility: hidden !important;
}

/* Animated state - after loaded, runs once */
body.loaded .navbar {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeIn 0.8s ease-out 0s 1 normal forwards;
}

body.loaded .hero .badge-container {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s 1 normal forwards;
}

body.loaded .hero .tagline-pill {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s 1 normal forwards;
}

body.loaded .hero h1 {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s 1 normal forwards;
}

body.loaded .hero p {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s 1 normal forwards;
}

body.loaded .hero .cta-group {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s 1 normal forwards;
}

body.loaded .feature-card {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s 1 normal forwards;
}

/* -----------------------------------------------------------
   STARTUP LOADER STYLES
----------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

#preloader svg {
    width: 320px; 
    height: auto;
    overflow: visible;
}

.logo-shape, .logo-stroke {
    stroke: var(--green-primary); 
    stroke-width: 5; 
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 8000;
    stroke-dashoffset: 8000;
}

.logo-shape {
    fill: transparent; 
    fill-rule: evenodd; 
    animation: drawLine 1.8s cubic-bezier(0.5, 0, 1, 1) forwards, 
               fillShape 0.6s ease-out 1.6s forwards;
}

.logo-stroke {
    animation: drawLine 1.8s cubic-bezier(0.5, 0, 1, 1) forwards, 
               colorLine 0.6s ease-out 1.6s forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes fillShape {
    to {
        fill: white;
        stroke: transparent;
    }
}

@keyframes colorLine {
    to { stroke: white; }
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* -----------------------------------------------------------
   SCROLL DIMMING OVERLAY
----------------------------------------------------------- */
#background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0); 
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s linear;
    z-index: 5;
}

/* -----------------------------------------------------------
   MOBILE RESPONSIVENESS - TABLET
----------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero h1 { 
        font-size: 3rem; 
    }
    
    .feature-grid-alt { 
        grid-template-columns: 1fr; 
        gap: 50px;
    }
    
    .use-cases { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .team-member, .advisor {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-member img, .advisor img {
        width: 100%;
        max-width: 400px;
        height: 500px;
        margin-bottom: 30px;
    }
    
    .team-member h4, .advisor h4 {
        font-size: 2.5rem;
        text-align: center !important;
        width: 100%;
    }
    
    .team-member ul, .advisor ul {
        text-align: left;
        padding-left: 20px;
        list-style-position: outside;
        align-self: center;
        max-width: 400px;
    }
    
    .team-member li, .advisor li {
        text-align: left;
    }
    
    .press-content-wrapper {
        flex-direction: column;
        padding: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        width: 380px;
    }
}

/* -----------------------------------------------------------
   MOBILE RESPONSIVENESS - PHONE
----------------------------------------------------------- */
@media (max-width: 768px) {
    /* Navigation */
    .navbar { 
        padding: 0 20px; 
        height: 70px; 
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px 30px;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero { 
        padding-top: 100px; 
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .badge-container {
        margin-bottom: 40px;
    }
    
    .supporter-name { 
        font-size: 1.8rem; 
    }
    
    .tagline-pill {
        font-size: 0.85rem;
        padding: 8px 20px;
        margin-bottom: 25px;
    }
    
    .hero h1 { 
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero p { 
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
        text-align: center;
    }
    
    /* Features Section */
    .features-section {
        padding: 40px 20px;
    }
    
    .feature-grid-alt { 
        gap: 40px; 
    }
    
    .feature-card { 
        padding: 30px 25px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    /* Why Section */
    .why-section {
        padding: 60px 20px;
    }
    
    .why-section h2 { 
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .why-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .use-cases {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .use-case h4 {
        font-size: 1.15rem;
    }
    
    .use-case p {
        font-size: 0.95rem;
    }
    
    .why-footer {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 20px;
    }
    
    .about-section h2 { 
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .section-subtitle { 
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .team-grid, .advisors-grid {
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .team-member h4, .advisor h4 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center !important;
        width: 100%;
    }
    
    .team-member ul, .advisor ul {
        text-align: left;
        padding-left: 20px;
        width: 100%;
        max-width: 400px;
        align-self: center;
    }
    
    .team-member li, .advisor li {
        font-size: 0.95rem;
        text-align: left;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-section h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        width: 300px;
        padding: 30px 25px;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .testimonial-card cite {
        font-size: 0.85rem;
    }
    
    /* Press Section */
    .press-section {
        padding: 60px 0;
    }
    
    .press-container {
        padding: 0 20px;
    }
    
    .press-content-wrapper {
        padding: 30px 25px;
    }
    
    .press-text h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .press-lead {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .press-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    /* Contact Section */
    .contact-integrated-section {
        padding: 60px 20px;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 25px;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-info-card p {
        font-size: 0.95rem;
    }
    
    .contact-details h4 {
        font-size: 1.15rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
    
    /* Footer */
    .footer { 
        padding: 50px 20px 30px 20px; 
    }
    
    .footer-content { 
        grid-template-columns: 1fr; 
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .footer-links { 
        flex-direction: column; 
        gap: 30px; 
    }
    
    .footer-bottom { 
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
    }
}

/* -----------------------------------------------------------
   EXTRA SMALL PHONES
----------------------------------------------------------- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .supporter-name {
        font-size: 1.5rem;
    }
    
    .why-section h2,
    .about-section h2,
    .contact-header h2 {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        width: 280px;
    }
    
    .press-text h2 {
        font-size: 1.4rem;
    }
    
    .team-member h4, .advisor h4 {
        font-size: 1.5rem;
    }
}