/* PHILANTHROBOTS - VERSION A STYLESHEET */
/* Mood: Activist, Street Art, Protest Poster Energy */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Arial Bold', 'Helvetica Neue', Arial, sans-serif;
    background: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0A0A0A;
    border-bottom: 4px solid #CCFF00;
    padding: 1rem 2rem;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: #CCFF00;
    letter-spacing: 0.1em;
}

.nav-tagline {
    font-size: 0.8rem;
    color: #FF006E;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: right;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 10rem);
    color: #CCFF00;
    text-shadow: 
        0 0 20px #CCFF00,
        4px 4px 0 #FF006E,
        8px 8px 0 #0A0A0A;
    margin-bottom: 1rem;
    line-height: 0.9;
}

/* Glitch effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #FF006E;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00FFFF;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(39px, 9999px, 74px, 0); }
    25% { clip: rect(88px, 9999px, 12px, 0); }
    50% { clip: rect(54px, 9999px, 91px, 0); }
    75% { clip: rect(12px, 9999px, 65px, 0); }
    100% { clip: rect(76px, 9999px, 33px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(12px, 9999px, 88px, 0); }
    25% { clip: rect(65px, 9999px, 23px, 0); }
    50% { clip: rect(91px, 9999px, 45px, 0); }
    75% { clip: rect(34px, 9999px, 71px, 0); }
    100% { clip: rect(56px, 9999px, 19px, 0); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #FF006E;
    margin-bottom: 2rem;
    letter-spacing: 0.15em;
    font-weight: 900;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: #FFFFFF;
}

/* ===== BUTTONS ===== */
.cta-button {
    background: #CCFF00;
    color: #0A0A0A;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    box-shadow: 
        4px 4px 0 #FF006E,
        8px 8px 0 rgba(255, 0, 110, 0.5);
}

.cta-button:hover {
    transform: translate(2px, 2px);
    box-shadow: 
        2px 2px 0 #FF006E,
        4px 4px 0 rgba(255, 0, 110, 0.5);
}

.cta-button.large {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
}

/* ===== AGENT SECTIONS ===== */
.agent {
    padding: 5rem 0;
    border-top: 4px solid #CCFF00;
}

.agent-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #CCFF00;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.agent-tagline {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: #FF006E;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.agent-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #FF006E;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.agent-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ===== NEWSPAPER LAYOUT (Option 5) ===== */
.agent.newspaper {
    background: url('images/newspaper-texture.jpg') center/cover;
    color: #0A0A0A;
    padding: 3rem 0;
    border: 3px solid #CCFF00;
}

.agent.newspaper.dark {
    background: #0A0A0A;
    color: #FFFFFF;
}

.newspaper-header {
    text-align: center;
    padding: 2rem;
    border-bottom: 6px double #0A0A0A;
    margin-bottom: 3rem;
}

.agent.newspaper.dark .newspaper-header {
    border-bottom: 6px double #CCFF00;
}

.newspaper-masthead {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #0A0A0A;
}

.agent.newspaper.dark .newspaper-masthead {
    color: #CCFF00;
}

.newspaper-date {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: #FF006E;
    margin-top: 0.5rem;
    letter-spacing: 0.15em;
}

.newspaper-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newspaper-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #0A0A0A;
    border-left: 8px solid #CCFF00;
    padding-left: 1.5rem;
}

.agent.newspaper.dark .newspaper-headline {
    color: #CCFF00;
    border-left: 8px solid #FF006E;
}

.newspaper-image {
    margin: 2rem 0;
}

.newspaper-image img {
    width: 100%;
    height: auto;
    border: 4px solid #0A0A0A;
}

.agent.newspaper.dark .newspaper-image img {
    border: 4px solid #CCFF00;
}

.newspaper-lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #0A0A0A;
}

.agent.newspaper.dark .newspaper-lead {
    color: #FFFFFF;
}

.newspaper-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.newspaper-col h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
    color: #FF006E;
    border-bottom: 3px solid #FF006E;
    padding-bottom: 0.5rem;
}

.newspaper-col ul {
    list-style: none;
    padding: 0;
}

.newspaper-col li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.2);
    font-weight: 600;
    color: #0A0A0A;
}

.agent.newspaper.dark .newspaper-col li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.newspaper-col p {
    color: #0A0A0A;
}

.agent.newspaper.dark .newspaper-col p {
    color: #FFFFFF;
}

.newspaper-col li::before {
    content: "▶ ";
    color: #CCFF00;
    font-weight: 900;
    margin-right: 0.5rem;
}

/* ===== SPLIT-SCREEN LAYOUT (Option 2) ===== */
.agent.split-screen {
    padding: 0;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: none;
}

.split-left, .split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.split-left {
    background: #0A0A0A;
    border-right: 4px solid #CCFF00;
}

.split-left img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(204, 255, 0, 0.5));
}

.split-right {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.split-content {
    max-width: 600px;
}

/* Flipped version */
.agent.split-screen.flipped {
    grid-template-columns: 1fr 1fr;
}

.agent.split-screen.flipped .split-left {
    order: 2;
    border-right: none;
    border-left: 4px solid #FF006E;
}

.agent.split-screen.flipped .split-right {
    order: 1;
}

.agent-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(204, 255, 0, 0.1);
    border-left: 4px solid #CCFF00;
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #CCFF00;
}

/* ===== DIAGONAL LAYOUT (Option 3) ===== */
.agent.diagonal {
    padding: 0;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background: #0A0A0A;
}

.diagonal-top {
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    padding: 5rem 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 85%);
    position: relative;
    z-index: 2;
}

.diagonal-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    z-index: 1;
}

.diagonal-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.3);
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
}

.diagonal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(204, 255, 0, 0.15);
    padding: 2rem;
    border: 3px solid #CCFF00;
    position: relative;
}

.stat-label {
    font-size: 0.9rem;
    color: #FF006E;
    font-weight: 900;
    letter-spacing: 0.1em;
}

/* Flipped diagonal */
.agent.diagonal.flipped {
    background: #1A1A1A;
}

.diagonal-bottom-first {
    background: #0A0A0A;
    padding: 5rem 3rem;
    clip-path: polygon(0 15%, 100% 30%, 100% 100%, 0 100%);
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.diagonal-top-first {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 1;
}

.health-pattern {
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            #CCFF00 0px,
            #CCFF00 2px,
            transparent 2px,
            transparent 20px
        ),
        repeating-linear-gradient(
            -45deg,
            #FF006E 0px,
            #FF006E 2px,
            transparent 2px,
            transparent 20px
        ),
        #0A0A0A;
    opacity: 0.3;
}

.diagonal-content.light {
    color: #FFFFFF;
}

/* ===== FULL-BLEED LAYOUT (Option 1) ===== */
.agent.full-bleed {
    padding: 0;
    min-height: 80vh;
    background: #0A0A0A;
    border-top: none;
}

.full-bleed-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 80vh;
}

.full-bleed-content.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.full-bleed-text {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

.full-bleed-image {
    position: relative;
    overflow: hidden;
}

.pattern-overlay {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            #CCFF00 0px,
            #CCFF00 3px,
            transparent 3px,
            transparent 8px
        ),
        repeating-linear-gradient(
            90deg,
            #FF006E 0px,
            #FF006E 3px,
            transparent 3px,
            transparent 8px
        );
    opacity: 0.2;
}

.pattern-overlay.lime {
    background-image: 
        repeating-linear-gradient(
            45deg,
            #CCFF00 0px,
            #CCFF00 4px,
            transparent 4px,
            transparent 16px
        ),
        repeating-linear-gradient(
            -45deg,
            #CCFF00 0px,
            #CCFF00 4px,
            transparent 4px,
            transparent 16px
        );
    opacity: 0.4;
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.capability {
    background: rgba(204, 255, 0, 0.15);
    padding: 1.5rem;
    text-align: center;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    border: 3px solid #CCFF00;
    color: #CCFF00;
}

.agent.full-bleed.light {
    background: #CCFF00;
}

.agent.full-bleed.light .full-bleed-text {
    background: #CCFF00;
}

.agent-title.dark,
.agent-tagline.dark,
.agent-description.dark {
    color: #0A0A0A;
}

.capabilities.dark .capability {
    background: rgba(10, 10, 10, 0.2);
    border: 3px solid #0A0A0A;
    color: #0A0A0A;
}

/* ===== FINALE SECTION ===== */
.agent.diagonal.finale {
    min-height: 100vh;
    background: radial-gradient(circle at center, #1A1A1A 0%, #0A0A0A 100%);
}

.agent.diagonal.finale .diagonal-top {
    background: transparent;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 90%);
    padding: 8rem 3rem;
}

.finale-content {
    text-align: center;
}

.agent-title.mega {
    font-size: clamp(3rem, 8vw, 6rem);
    background: linear-gradient(135deg, #CCFF00 0%, #FF006E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.agent-subtitle.mega {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #CCFF00;
    margin-bottom: 2rem;
}

.agent-description.mega {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    max-width: 1000px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.finale-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.finale-feature {
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.2) 0%, rgba(255, 0, 110, 0.2) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    border: 4px solid #CCFF00;
    color: #CCFF00;
    position: relative;
    overflow: hidden;
}

.finale-feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 0, 110, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ===== CALL TO ACTION ===== */
.cta {
    background: linear-gradient(135deg, #FF006E 0%, #0A0A0A 50%, #CCFF00 100%);
    padding: 8rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(3rem, 7vw, 5rem);
    color: #CCFF00;
    margin-bottom: 2rem;
    text-shadow: 
        3px 3px 0 #0A0A0A,
        -1px -1px 0 #FF006E;
}

.cta-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-text.bold {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: #CCFF00;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #0A0A0A;
    border-top: 4px solid #CCFF00;
    padding: 4rem 2rem;
    text-align: center;
}

.footer-brand {
    font-size: 2rem;
    color: #CCFF00;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.footer-tagline {
    font-size: 1.2rem;
    color: #FF006E;
    margin-bottom: 2rem;
    font-weight: 700;
}

.footer-text {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .agent.split-screen,
    .agent.split-screen.flipped {
        grid-template-columns: 1fr;
    }
    
    .agent.split-screen .split-left,
    .agent.split-screen.flipped .split-left {
        order: 1;
        border-right: none;
        border-left: none;
        border-bottom: 4px solid #CCFF00;
    }
    
    .agent.split-screen .split-right,
    .agent.split-screen.flipped .split-right {
        order: 2;
    }
    
    .full-bleed-content,
    .full-bleed-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .full-bleed-image {
        min-height: 300px;
    }
    
    .capabilities {
        grid-template-columns: 1fr;
    }
    
    .diagonal-top {
        clip-path: polygon(0 0, 100% 0, 100% 80%, 0 95%);
    }
    
    .diagonal-bottom-first {
        clip-path: polygon(0 5%, 100% 20%, 100% 100%, 0 100%);
    }
}

@media (max-width: 640px) {
    .nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .nav-brand {
        font-size: 1.2rem;
    }
    
    .nav-tagline {
        font-size: 0.7rem;
    }
    
    .hero {
        margin-top: 100px;
    }
    
    .newspaper-columns {
        grid-template-columns: 1fr;
    }
    
    .finale-features {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.agent {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-lime {
    color: #CCFF00;
}

.text-magenta {
    color: #FF006E;
}

.bg-black {
    background: #0A0A0A;
}

.border-lime {
    border-color: #CCFF00;
}

.border-magenta {
    border-color: #FF006E;
}

/* ===== AGENT SEPARATION ===== */
.agent {
    border-bottom: 8px solid #CCFF00;
    padding-bottom: 6rem;
    position: relative;
}

.agent:last-of-type {
    border-bottom: none;
}

/* ===== FUND BUTTON ===== */
.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0 10rem 0;
    position: relative;
    z-index: 100;
}

.fund-button {
    display: block;
    width: fit-content;
    background: #FF006E;
    color: #FFFFFF;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 3px solid #CCFF00;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    position: relative;
}

.fund-button:hover {
    background: #CCFF00;
    color: #0A0A0A;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.6);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 6rem 2rem;
    background: #0A0A0A;
    border-top: 8px solid #CCFF00;
    border-bottom: 8px solid #FF006E;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3.5rem;
    color: #CCFF00;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 0 #FF006E;
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(204, 255, 0, 0.05);
    border: 3px solid #CCFF00;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(204, 255, 0, 0.1);
    border-color: #FF006E;
    transform: translateY(-5px);
    box-shadow: 0 8px 0 #FF006E;
}

.faq-question {
    font-size: 1.4rem;
    color: #CCFF00;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.faq-answer {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.7;
    font-weight: 500;
}

.faq-answer strong {
    color: #CCFF00;
    font-weight: 900;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .faq {
        padding: 4rem 1.5rem;
    }
}

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

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border: 2px solid #CCFF00;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #CCFF00;
    color: #0A0A0A;
    transform: scale(1.05);
}

/* Navigation Responsive */
@media (max-width: 768px) {
    .nav {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        align-items: center;
    }
    
    .nav-brand {
        font-size: 1rem;
        grid-column: 1;
        grid-row: 1;
    }
    
    .nav-links {
        justify-content: flex-end;
        grid-column: 2;
        grid-row: 1;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.35rem 0.8rem;
        letter-spacing: 0.05em;
    }
    
    .nav-tagline {
        display: none;
    }
}
