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

::selection {
    background-color: #000;
    color: #fff;
}

::-moz-selection {
    background-color: #000;
    color: #fff;
}

body {
    font-family: 'Urbanist', Arial, sans-serif;
}

/* Section 1: Countdown Banner */
.countdown-banner {
    width: 100%;
    background-color: #000;
    padding: 0.25rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-text {
    font-size: 0.875rem;
    font-weight: bold;
    line-height: 2;
    text-align: center;
    color: #515151;
}

/* Section 2: Hero Section */
.hero-section {
    display: flex;
    min-height: 100vh;
    gap: 0.7rem;
}

.hero-content {
    flex: 1;
    width: 50%;
    background-color: #191919;
    padding: 6.25rem 4.375rem 6.25rem 7.5rem;
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.logo {
    height: 1.75rem;
}

.logo-img {
    height: 1.75rem;
    width: auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -0.1rem;
    color: #f4f4f4;
    margin: 0;
}

.text-gray {
    color: #a8a8a8;
}

.typewriter {
    text-decoration: line-through;
    text-decoration-thickness: 0.125rem;
    border-right: 0.125rem solid #a8a8a8;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: #a8a8a8; }
    51%, 100% { border-color: transparent; }
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: #c4c4c4;
    max-width: 28.25rem;
    margin: 0;
}

.waitlist-form {
    display: flex;
    border: 0.0625rem solid #a8a8a8;
    border-radius: 0.75rem;
    overflow: hidden;
    max-width: 31.25rem;
    background: transparent;
}

.email-input {
    flex: 1;
    height: 3rem;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    outline: none;
}

.email-input::placeholder {
    color: #a8a8a8;
}

.join-btn {
    width: 10.8125rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.65rem;
    background-color: #fff;
    border: none;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.notification-icon {
    width: 1rem;
    height: 1rem;
}

.hero-image {
    flex: 1;
    width: 50%;
    background-image: url('assets/container-3-background.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.95rem 0.1rem 0 10.35rem;
}

.phone-mockup {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
}

.floating-btn {
    position: absolute;
    top: 5rem;
    right: 7.5rem;
    margin-bottom: 1.4rem;
    padding: 0.75rem 2rem;
    background-color: #fff;
    border: 0.0625rem solid #a8a8a8;
    border-radius: 0.75rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

/* Section 3: Scrolling Text */
.user-info-container {
    height: 4.25rem;
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    background-color: #f4f4f4;
    overflow: hidden;
}

.scrolling-text {
    display: flex;
    gap: 3.75rem;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.scroll-item {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.75;
    color: #515151;
    min-width: 20rem;
}

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

/* Section 4: What to Expect */
.balance-container {
    padding: 5rem 7.5rem;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
    background-color: #fff;
}

.content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.main-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.1;
    color: #000;
    max-width: 39.625rem;
    margin: 0;
}

.main-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #515151;
    max-width: 26.375rem;
    margin: 0;
}

.features-grid {
    display: flex;
    gap: 2.5rem;
}

.feature-card {
    flex: 1;
    border-radius: 1.25rem;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.card-top {
    justify-content: space-between;
    padding: 2.5rem 2.5rem 0 2.5rem;
}

.card-bottom {
    justify-content: flex-end;
    padding: 0 2.5rem 2.5rem 2.5rem;
}

.container-5 {
    background-image: url('assets/container-5-background-image.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.container-6 {
    background-image: url('assets/container-6-background-image.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
}

.container-7 {
    background-image: url('assets/container-7-background-image.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-phone {
    width: 22.375rem;
    height: 30rem;
    object-fit: contain;
    z-index: 2;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
    z-index: 2;
}

.feature-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    color: #000;
    margin: 0;
    z-index: 2;
}

.feature-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.33;
    text-align: center;
    color: #3a3a3a;
    margin: 0;
    z-index: 2;
}

.instant-payments-card {
    border-radius: 1.25rem;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 3.75rem;
    padding: 2.5rem 3.75rem 0;
}

.payments-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 2;
}

.payments-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
    text-align: left;
    color: #000;
    margin: 0;
}

.payments-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.33;
    text-align: left;
    color: #3a3a3a;
    margin: 0;
}

.payments-phone {
    width: 33.0625rem;
    height: 21.25rem;
    object-fit: contain;
    z-index: 2;
}

/* Section 5: Our Team */
.team-section {
    padding: 5rem 7.5rem;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.team-header {
    text-align: center;
}

.team-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.1;
    color: #000;
    margin: 0 0 1rem 0;
}

.team-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    color: #515151;
    margin: 0;
}

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

.team-card {
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-0.75rem) !important;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 0.25rem solid #f4f4f4;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.team-role {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #515151;
    margin: 0;
}

.team-bio {
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #3a3a3a;
    margin: 0;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #515151;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-0.25rem) scale(1.1);
}

/* Section 6: Footer */
.Frame-2 {
    height: 32.375rem;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 3.125rem;
    padding: 5rem 4.375rem 5rem 7.5rem;
    padding-bottom: 31.25rem;
    background-color: #000;
}

.Vector.footer-logo {
    width: 12.25rem;
    height: 1.75rem;
    flex-grow: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.Join-the-waitlist-to-experience-it-before-others-follow-us-for-updates {
    max-width: 66.875rem;
    flex-grow: 0;
    font-family: Urbanist;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -0.075rem;
    text-align: center;
    color: #f4f4f4;
}

.Instant-payments-and-total-financial-control-right-from-your-phone-Be-the-first-to-experience-the {
    max-width: 29.0625rem;
    flex-grow: 0;
    font-family: Urbanist;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: center;
    color: #c4c4c4;
    margin-top: 1rem;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}

.footer-form {
    display: flex;
    border: 0.0625rem solid #515151;
    border-radius: 0.75rem;
    overflow: hidden;
    max-width: 31.25rem;
    background: transparent;
}

.footer-form .email-input {
    flex: 1;
    height: 3rem;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    outline: none;
}

.footer-form .email-input::placeholder {
    color: #a8a8a8;
}

.footer-form .join-btn {
    width: 10.8125rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.65rem;
    background-color: #fff;
    border: none;
    font-family: 'Urbanist', sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.footer-form .notification-icon {
    width: 1rem;
    height: 1rem;
}

.social-media {
    display: flex;
    gap: 0.25rem;
}

.Big-Button.social-btn {
    width: 3.25rem;
    height: 3rem;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0.75rem;
    border: solid 0.0625rem #515151;
    background-color: transparent;
    cursor: pointer;
    text-decoration: none;
}

.Vector.social-icon {
    width: 1.04rem;
    height: 1.04rem;
    margin: 0 0 60rem;
    border: solid 0.0625rem #fff;
}

.social-icon {
    width: 1.04rem;
    height: 1.04rem;
    filter: brightness(0) invert(1);
}

.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

/* iPad Responsive */
@media (min-width: 48.0625rem) and (max-width: 64rem) {
    .countdown-banner {
        padding: 0.1875rem 0;
    }
    
    .countdown-text {
        font-size: 0.75rem;
    }
    
    .hero-section {
        gap: 0.5rem;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 5rem 3.125rem 5rem 5rem;
        gap: 2.5rem;
    }
    
    .logo {
        height: 1.375rem;
    }
    
    .logo-img {
        height: 1.375rem;
    }
    
    .hero-title {
        font-size: 3.125rem;
        letter-spacing: -0.0625rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        max-width: 23.75rem;
    }
    
    .waitlist-form {
        max-width: 26.25rem;
    }
    
    .email-input {
        height: 2.625rem;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    .join-btn {
        width: 9.375rem;
        height: 2.625rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .notification-icon {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .hero-image {
        padding: 1.5625rem 0.0625rem 0 8.125rem;
    }
    
    .floating-btn {
        top: 3.75rem;
        right: 5rem;
        padding: 0.625rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .user-info-container {
        height: 3.625rem;
        padding: 1rem 0;
    }
    
    .scrolling-text {
        gap: 3.125rem;
    }
    
    .scroll-item {
        font-size: 0.875rem;
        min-width: 17.5rem;
    }
    
    .balance-container {
        padding: 3.75rem 5rem;
        gap: 3.125rem;
    }
    
    .main-title {
        font-size: 2.5rem;
        max-width: 31.25rem;
    }
    
    .main-description {
        font-size: 0.875rem;
        max-width: 21.875rem;
    }
    
    .features-grid {
        gap: 1.875rem;
    }
    
    .feature-card {
        gap: 1.5rem;
    }
    
    .card-top {
        padding: 2rem 2rem 0 2rem;
    }
    
    .card-bottom {
        padding: 0 2rem 2rem 2rem;
    }
    
    .feature-title {
        font-size: 1.75rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .feature-phone {
        width: 17.5rem;
        height: 23.75rem;
    }
    
    .instant-payments-card {
        padding: 1.875rem 3.125rem;
        gap: 3.125rem;
    }
    
    .payments-content {
        gap: 1rem;
    }
    
    .payments-title {
        font-size: 1.75rem;
    }
    
    .payments-description {
        font-size: 1rem;
    }
    
    .payments-phone {
        width: 26.25rem;
        height: 17.5rem;
    }
    
    .Frame-2 {
        height: 26.25rem;
        padding: 3.75rem 3.125rem 6.25rem 5rem;
        gap: 2.5rem;
    }
    
    .Vector.footer-logo {
        width: 10rem;
        height: 1.375rem;
    }
    
    .Join-the-waitlist-to-experience-it-before-others-follow-us-for-updates {
        font-size: 2.5rem;
        max-width: 53.125rem;
        letter-spacing: -0.05rem;
    }
    
    .Instant-payments-and-total-financial-control-right-from-your-phone-Be-the-first-to-experience-the {
        font-size: 0.875rem;
        max-width: 25rem;
    }
    
    .footer-actions {
        gap: 0.9375rem;
    }
    
    .footer-form {
        max-width: 26.25rem;
    }
    
    .footer-form .email-input {
        height: 2.625rem;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
    
    .footer-form .join-btn {
        width: 9.375rem;
        height: 2.625rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .footer-form .notification-icon {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .social-media {
        gap: 0.1875rem;
    }
    
    .Big-Button.social-btn {
        width: 2.75rem;
        height: 2.625rem;
    }
    
    .social-icon {
        width: 0.875rem;
        height: 0.875rem;
    }
}

/* Mobile Responsive */
@media (max-width: 48rem) {
    .mobile-text {
        display: inline;
    }
    
    .desktop-text {
        display: none;
    }
    
    .countdown-banner {
        width: 100%;
        padding: 0.625rem 5%;
    }
    
    .countdown-text {
        font-size: clamp(0.625rem, 3vw, 0.75rem);
        font-weight: normal;
        line-height: 1.33;
        text-align: center;
        color: #fff;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        padding: 5rem 6% 2.5rem;
        gap: 2.5rem;
    }
    
    .logo-img {
        width: clamp(6.25rem, 32vw, 7.5rem);
        height: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 12vw, 2.75rem);
        letter-spacing: -0.055rem;
        text-align: left;
    }
    
    .hero-description {
        font-size: clamp(0.75rem, 4vw, 0.875rem);
        line-height: 1.4;
        text-align: left;
    }
    
    .waitlist-form {
        border-radius: 0.75rem;
        flex-direction: row;
        width: 100%;
        max-width: none;
    }
    
    .email-input {
        font-size: clamp(0.625rem, 3.5vw, 0.75rem);
        line-height: 1.33;
        padding: 0.875rem 4%;
    }
    
    .join-btn {
        width: auto;
        min-width: 6.25rem;
        gap: 0.25rem;
        padding: 0.625rem 2%;
        border-radius: 0.65rem;
        height: 3rem;
    }
    
    .join-btn span {
        font-size: clamp(0.75rem, 4vw, 0.875rem);
        line-height: 1.29;
    }
    
    .hero-image {
        width: 100%;
        padding: 1.875rem 5% 0;
    }
    
    .phone-mockup {
        width: 85%;
        max-width: 20.0625rem;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .floating-btn {
        display: none;
    }
    
    .user-info-container {
        width: 100%;
        justify-content: center;
        gap: 3.75rem;
        padding: 1.25rem 0;
    }
    
    .scroll-item {
        font-size: clamp(0.875rem, 4.5vw, 1rem);
        font-weight: bold;
        line-height: 1.75;
        text-align: left;
        color: #515151;
        min-width: 17.5rem;
    }
    
    .balance-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.75rem;
        padding: 3.75rem 5% 2.5rem;
    }
    
    .content-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }
    
    .main-title {
        font-size: clamp(1.5rem, 8vw, 1.75rem);
        text-align: left;
        width: 100%;
    }
    
    .main-description {
        font-size: clamp(0.75rem, 4vw, 0.875rem);
        line-height: 1.57;
        text-align: left;
        width: 100%;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }
    
    .feature-card {
        padding: 1.25rem 5% 0;
        gap: 1.5rem;
        width: 100%;
        justify-content: flex-end;
    }
    
    .feature-title {
        font-size: clamp(1.25rem, 6.5vw, 1.5rem);
        text-align: center;
    }
    
    .feature-description {
        font-size: clamp(0.6875rem, 3.5vw, 0.75rem);
        line-height: 1.33;
        text-align: center;
    }
    
    .feature-phone {
        width: 60%;
        max-width: 12.5rem;
        height: auto;
        margin-top: auto;
    }
    
    .container-6 .feature-phone {
        content: url('assets/container-6-phone-image2.png');
    }
    
    .container-6 {
        flex-direction: column;
    }
    
    .container-6 .feature-phone {
        order: 3;
    }
    
    .container-6 .feature-title {
        order: 1;
    }
    
    .container-6 .feature-description {
        order: 2;
    }
    
    .instant-payments-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.75rem;
        padding: 1.25rem 5% 0;
        width: 100%;
    }
    
    .payments-title {
        font-size: clamp(1.25rem, 6.5vw, 1.5rem);
        text-align: left;
    }
    
    .payments-description {
        font-size: clamp(0.6875rem, 3.5vw, 0.75rem);
        line-height: 1.33;
        text-align: left;
    }
    
    .payments-phone {
        width: 80%;
        max-width: 17.1875rem;
        height: auto;
        margin: auto auto 0;
        content: url('assets/container-7-phone-image2.png');
        align-self: flex-end;
    }
    
    .team-section {
        padding: 3.75rem 5% 2.5rem;
        gap: 2.5rem;
    }
    
    .team-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .team-description {
        font-size: clamp(0.875rem, 4vw, 1rem);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .team-avatar {
        width: 4rem;
        height: 4rem;
    }
    
    .team-name {
        font-size: clamp(1.125rem, 5vw, 1.25rem);
    }
    
    .team-role {
        font-size: clamp(0.875rem, 4vw, 0.9375rem);
    }
    
    .team-bio {
        font-size: clamp(0.75rem, 3.5vw, 0.8125rem);
    }
    
    .social-link {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .Frame-2 {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 3.75rem 6% 2.5rem;
    }
    
    .Vector.footer-logo {
        width: clamp(6.25rem, 32vw, 7.5rem);
        height: auto;
    }
    
    .Join-the-waitlist-to-experience-it-before-others-follow-us-for-updates {
        height: 4.875rem;
        align-self: stretch;
        flex-grow: 0;
        font-family: Urbanist;
        font-size: 1.5rem;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.1;
        letter-spacing: normal;
        text-align: left;
        color: #f4f4f4;
    }
    
    .Instant-payments-and-total-financial-control-right-from-your-phone-Be-the-first-to-experience-the {
        font-size: clamp(0.75rem, 4vw, 0.875rem);
        line-height: 1.57;
        text-align: left;
        margin-top: 1rem;
        width: 100%;
    }
    
    .footer-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
        width: 100%;
    }
    
    .footer-form {
        width: 100%;
    }
    
    .footer-form .email-input {
        font-size: clamp(0.625rem, 3.5vw, 0.75rem);
        line-height: 1.33;
    }
    
    .footer-form .join-btn {
        font-size: clamp(0.75rem, 4vw, 0.875rem);
        line-height: 1.29;
    }
    
    .social-media {
        width: 100%;
        justify-content: flex-start;
    }
    
    .Big-Button.social-btn {
        width: clamp(2.1875rem, 11vw, 2.5rem);
        height: clamp(2rem, 10vw, 2.3125rem);
        border-width: 0.05rem;
    }
}
.form-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    text-align: center;
    transition: all 0.3s ease;
}
.form-message.success {
    background-color: #10b981;
    color: #fff;
}
.form-message.error {
    background-color: #ef4444;
    color: #fff;
}
.join-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}