/* --- Global Reset & Body Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#capabilities,
#products,
#director {
    scroll-margin-top: 130px;
    /* Clears the fixed floating header when jumped to via nav */
}

body {
    /* Adding a dark background temporarily so the white text and glass nav show up properly */
    background-color: #0d0d0d;
    overflow-x: hidden;
}

/* --- Header Section --- */
/* Floating glass pill: bar itself carries the glassmorphism now,
   the logo/links/button inside are plain (no nested glass pill). */
.header-section {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 18px 32px;
    width: calc(100% - 40px);
    max-width: 1240px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
}

/* --- Brand --- */
.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* New image logo styling */
.logo-image {
    height: 28px;
    /* Matches the line-height of the text for perfect alignment */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #FDFCF4;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #FDFCF4;
}

/* --- Floating Navigation --- */
/* Now nested inside the glass header-section pill, so this is just a plain link row. */
.floating-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: -0.5px;
    color: #8E8E9E;
    /* Default gray state */
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease-in-out;
}

.nav-link:hover,
.nav-link.active {
    color: #FDFCF4;
    /* Active/Hover white state */
}

/* --- CTA Button --- */
.cta-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    height: 48px;

    background: #FF5623;
    border-radius: 8px;

    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #FDFCF4;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease-in-out;
}

.cta-button:hover {
    opacity: 0.9;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(48px, 8vw, 120px) clamp(20px, 6vw, 80px);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 100vh;
}

/* --- Hero Frame --- */
.hero-frame {
    position: relative;
    z-index: 2;
    /* Acts as the positioning anchor for the corner crosses (no visible border/connecting line) */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 64px;
    gap: 32px;
    width: 100%;
    max-width: 960px;
}

/* --- Hero Background Video (full-bleed, breaks out of hero-section's max-width) --- */
.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video-scrim {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translateX(-50%);
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 13, 13, .5), rgba(13, 13, 13, .65) 65%, rgba(13, 13, 13, .85));
}

/* --- Corner Cross Icons --- */
.cross-icon {
    position: absolute;
    z-index: 2;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* No background patch: sits directly over the hero video now, not a flat page background. */
}

.top-left {
    left: -11px;
    top: -11px;
}

.top-right {
    right: -11px;
    top: -11px;
}

.bottom-left {
    left: -11px;
    bottom: -11px;
}

.bottom-right {
    right: -11px;
    bottom: -11px;
}

/* --- Typography & Content --- */
.hero-overline {
    position: relative;
    z-index: 2;
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF5623;
}

.hero-title {
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.12;
    /* 72px */
    text-align: center;
    letter-spacing: -2px;
    color: #FDFCF4;
    max-width: 832px;
}

.hero-desc {
    position: relative;
    z-index: 2;
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.56;
    /* 28px */
    text-align: center;
    color: #8E8E9E;
    max-width: 720px;
}

/* --- Hero CTA Button --- */
.hero-cta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #FF5623;
    border-radius: 8px;

    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #FDFCF4;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.hero-cta:hover {
    background: rgba(255, 86, 35, 0.1);
    /* Subtle orange tint on hover */
}

/* --- Metrics Section --- */
.metrics-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns content to the left */
    padding: 80px;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* --- Metrics Header --- */
.metrics-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 1280px;
    /* Constrains inner content width */
}

.metrics-overline {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF5623;
}

.metrics-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    color: #FDFCF4;
}

/* --- Metrics Grid --- */
.metrics-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 1280px;
}

/* --- Metric Cards --- */
.metric-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 16px;
    flex: 1;
    /* Ensures all cards take up equal width in the row */
    height: 160px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.metric-value {
    font-family: 'Geist Mono', monospace;
    font-weight: 700;
    font-size: 48px;
    line-height: 62px;
    letter-spacing: -2px;
    color: #FF5623;
}

.metric-label {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8E8E9E;
}

/* --- Portfolio Section --- */
.portfolio-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* --- Portfolio Header --- */
.portfolio-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1280px;
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 640px;
}

.portfolio-overline {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF5623;
}

.portfolio-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #FDFCF4;
}

.portfolio-desc {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    /* 24px */
    color: #8E8E9E;
    max-width: 400px;
}

/* --- Portfolio Grid --- */
.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1280px;
}

.grid-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

/* --- Project Cards --- */
.project-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    /* Makes cards stretch equally */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    /* Ensures image respects the border-radius */
    transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.project-image-wrapper {
    width: 100%;
    height: 260px;
    background-color: #1a1a1a;
    /* Placeholder color */
    background-size: cover;
    background-position: center;
    /* Example gradient overlay to darken images slightly */
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.image-atlas {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/img/project-image-wrapper.png');
}

.image-aether {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/img/project-image-wrapper (1).png');
}

.image-nova {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/img/project-image-wrapper (2).png');
}

.image-horizon {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/img/project-image-wrapper (3).png');
}

.project-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 12px;
}

.project-category {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FF5623;
}

.project-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #FDFCF4;
}

.project-desc {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    /* 21px */
    color: #8E8E9E;
}

.case-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    /* Adds a little separation from the description */
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FDFCF4;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.case-link:hover {
    opacity: 0.8;
}

.case-link svg {
    transition: transform 0.2s ease-in-out;
}

.case-link:hover svg {
    transform: translateX(4px);
    /* Cute little arrow bump on hover */
}

/* --- Director Section --- */
.director-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers the inner container */
    padding: 100px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;

    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.director-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    gap: 40px;
    /* Added gap to ensure spacing on smaller screens */
}

/* --- Text Pane --- */
.text-pane {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 720px;
}

.director-overline {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF5623;
}

.director-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #FDFCF4;
}

.director-quote {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.56;
    /* 28px */
    color: #8E8E9E;
}

/* --- Director Meta --- */
.director-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.director-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    color: #FDFCF4;
}

.director-role {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #FF5623;
}

/* --- Director Image --- */
.director-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 320px;
    flex-shrink: 0;
    /* Prevents the image container from shrinking */

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    /* Fallback dark color and image setup */
    background-color: #1a1a1a;
    background-image: url('assets/img/unnamed.webp');
    background-size: 82%;
    background-repeat: no-repeat;
    background-position: center;
}

/* --- CTA Section --- */
.cta-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 80px;
    gap: 32px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #FDFCF4;
    max-width: 800px;
}

.cta-desc {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    /* ~144% */
    text-align: center;
    color: #8E8E9E;
    max-width: 640px;
}

.cta-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 16px;
    gap: 16px;
}

.email-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;

    background: #FF5623;
    border-radius: 8px;

    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: #FDFCF4;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.email-cta:hover {
    opacity: 0.9;
}

/* --- Contact Section (functional form) --- */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 120px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    scroll-margin-top: 130px;
    /* Clears the fixed floating header when scrolled/linked to */
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 700px;
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.15;
    text-align: center;
    color: #FDFCF4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.contact-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.contact-row .contact-input {
    flex: 1;
    width: auto;
    min-width: 0;
}

.contact-input {
    width: 100%;
    padding: 16px 20px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: 'Geist Mono', monospace;
    font-size: 15px;
    color: #FDFCF4;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.contact-input::placeholder {
    color: #8E8E9E;
}

.contact-input:focus {
    outline: none;
    border-color: #FF5623;
    box-shadow: 0 0 0 3px rgba(255, 86, 35, 0.15);
}

.contact-input-full {
    width: 100%;
}

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%238E8E9E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.contact-select:invalid {
    color: #8E8E9E;
}

.contact-textarea {
    min-height: 160px;
    resize: vertical;
    font-family: 'Geist Mono', monospace;
}

.contact-submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 8px;
}

.contact-submit {
    padding: 14px 32px;
    height: 48px;
    background: #FF5623;
    border: none;
    border-radius: 8px;
    font-family: 'Geist Mono', monospace;
    font-weight: 600;
    font-size: 15px;
    color: #FDFCF4;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.contact-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.contact-legal {
    font-family: 'Geist Mono', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #8E8E9E;
    max-width: 360px;
}

.contact-legal a {
    color: #8E8E9E;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.contact-legal a:hover {
    color: #FDFCF4;
}

/* --- Footer Section --- */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers the inner containers */
    padding: 80px 80px 40px;
    gap: 60px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    gap: 40px;
}

.footer-col-1,
.footer-col-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.footer-col-3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 514px;
    gap: 40px;
}

.location-details,
.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.director-row,
.email-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-list,
.social-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Footer Typography --- */
.footer-overline {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8E8E9E;
    margin-bottom: 4px;
}

.footer-text {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    /* 21px */
    color: #8E8E9E;
}

.footer-label {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #8E8E9E;
}

.footer-value-white {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #FDFCF4;
}

.footer-value-orange {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FF5623;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.footer-value-orange:hover {
    opacity: 0.8;
}

.footer-link {
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #8E8E9E;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-link:hover {
    color: #FDFCF4;
}

/* --- Pre-Footer CTA Section (Moonsworth) --- */
.pre-footer-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    height: 911px;
    margin: 0 auto;

    background: url('assets/img/Section.png') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.pre-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, .35), rgba(13, 13, 13, .55) 55%, rgba(13, 13, 13, .8));
}

.moonsworth-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 960px;
    /* The padding isn't strictly necessary here if we use gap/height,
     but added to ensure spacing doesn't collapse */
    padding: 40px 0;
}

/* --- Large Corner Cross Icons --- */
.cross-icon-lg {
    position: absolute;
    z-index: 1;
    width: 30px;
    height: 30px;
}

.cross-icon-lg .cross-v {
    position: absolute;
    left: 48.33%;
    right: 48.33%;
    top: 0%;
    bottom: 0%;
    background: #FDFCF4;
}

.cross-icon-lg .cross-h {
    position: absolute;
    left: 0%;
    right: 0%;
    top: 48.33%;
    bottom: 48.33%;
    background: #FDFCF4;
}

/* Precise positioning based on your specs */
.cross-icon-lg.top-left {
    left: 0;
    top: -67px;
}

.cross-icon-lg.top-right {
    left: 930px;
    /* Equivalent to right: 0 inside the 960px container */
    top: -67px;
}

.cross-icon-lg.bottom-left {
    left: 0;
    top: 233px;
    /* Extends below the immediate text content */
}

.cross-icon-lg.bottom-right {
    left: 930px;
    top: 233px;
}

/* --- Typography & Elements --- */
.moonsworth-title {
    font-family: 'PPMori', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    text-align: center;
    letter-spacing: -1.5px;
    color: #FDFCF4;
    width: 100%;
    max-width: 632px;
}

.moonsworth-desc {
    font-family: 'PPSupplyMono', 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* 156% */
    text-align: center;
    color: #FDFCF4;
    opacity: 0.7;
    width: 100%;
    max-width: 520px;
}

.moonsworth-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    margin-top: 16px;
    /* Extra spacing pushed via button */
    height: 48px;

    background: #FF5623;

    font-family: 'PPSupplyMono', 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FDFCF4;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.moonsworth-btn:hover {
    opacity: 0.9;
}

/* --- Footer Bottom --- */
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    width: 100%;
    max-width: 1280px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #8E8E9E;
}

.bottom-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.bottom-link {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #8E8E9E;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.bottom-link:hover {
    color: #FDFCF4;
}