/* =========================================================================
   Buzzercode — Premium Landing Page CSS
   Design inspired by Tinder, Bumble, and high-converting SaaS landing pages
   ========================================================================= */

:root {
    --bg-dark: #050508;
    --bg-card: #0f0f14;
    --bg-card2: #14141c;
    --text-main: #ffffff;
    --text-muted: #7a7a8c;
    --text-dim: #4a4a5a;

    --accent-primary: #00ff88;
    --accent-primary-dim: rgba(0, 255, 136, 0.12);
    --accent-primary-glow: rgba(0, 255, 136, 0.35);
    --accent-blue: #5b8def;
    --accent-blue-dim: rgba(91, 141, 239, 0.12);
    --accent-red: #ff3b6b;

    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.15);
    --card-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
    --glass-bg: rgba(15, 15, 20, 0.8);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Section Label Utility
   ========================================= */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 14px;
}

/* =========================================
   HEADER
   ========================================= */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid var(--border-color);
    gap: 20px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-main);
    white-space: nowrap;
}

.logo-accent {
    color: var(--accent-primary);
}

.header-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-main);
}

.launch-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-primary);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.launch-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--accent-primary-glow);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 5% 80px;
    min-height: 90vh;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

/* Animated background mesh */
.hero-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 50%, rgba(0, 255, 136, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 90% 20%, rgba(91, 141, 239, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 90%, rgba(255, 59, 107, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: meshPulse 8s ease-in-out infinite alternate;
}

@keyframes meshPulse {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.hero-content {
    flex: 1;
    max-width: 580px;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary-dim);
    border: 1px solid rgba(0, 255, 136, 0.25);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
    }
}

/* Hero Headline */
.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1.0;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.highlight {
    color: var(--accent-primary);
    text-shadow: 0 0 60px rgba(0, 255, 136, 0.5);
    position: relative;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.primary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-primary);
    color: var(--bg-dark);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5);
}

.secondary-action {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
    padding: 16px 0;
}

.secondary-action:hover {
    color: var(--text-main);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px 24px;
    width: fit-content;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.stat-pill:first-child {
    padding-left: 0;
}

.stat-pill:last-child {
    padding-right: 0;
}

.stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1.2;
}

.stat-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
}

/* =========================================
   PHONE MOCKUP
   ========================================= */
.hero-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #0a0a0e;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 44px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 60px rgba(0, 255, 136, 0.05);
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 26px;
    background: #0a0a0e;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111118;
}

/* Stacked preview cards */
.preview-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
}

.preview-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
}

.preview-card-3 {
    top: 60px;
    left: 20px;
    right: 20px;
    height: 360px;
    background: #1a1a28;
    transform: scale(0.9) translateY(-20px);
    z-index: 1;
}

.preview-card-2 {
    top: 60px;
    left: 20px;
    right: 20px;
    height: 360px;
    transform: scale(0.95) translateY(-10px);
    z-index: 2;
}

.preview-card-1 {
    top: 60px;
    left: 20px;
    right: 20px;
    height: 360px;
    z-index: 3;
    animation: cardWobble 6s ease-in-out infinite;
}

@keyframes cardWobble {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    25% {
        transform: rotate(1.5deg) translateY(-4px);
    }

    75% {
        transform: rotate(-1deg) translateY(-2px);
    }
}

.preview-card-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 4;
}

.preview-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.preview-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.preview-rate {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-top: 2px;
}

.preview-like-badge {
    position: absolute;
    top: 30px;
    left: 20px;
    padding: 6px 12px;
    border: 3px solid var(--accent-primary);
    border-radius: 8px;
    color: var(--accent-primary);
    font-size: 1.2rem;
    font-weight: 900;
    transform: rotate(-12deg);
    z-index: 5;
    animation: badgeAppear 3s ease-in-out 1s infinite;
}

@keyframes badgeAppear {

    0%,
    70%,
    100% {
        opacity: 0;
    }

    20%,
    50% {
        opacity: 1;
    }
}

.preview-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.preview-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: default;
}

.preview-no {
    background: rgba(255, 59, 107, 0.15);
    border: 1px solid rgba(255, 59, 107, 0.4);
}

.preview-call {
    background: var(--accent-primary);
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
}

.preview-yes {
    background: rgba(91, 141, 239, 0.15);
    border: 1px solid rgba(91, 141, 239, 0.4);
}

/* Floating notification */
.float-notif {
    position: absolute;
    bottom: -30px;
    left: -60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    animation: floatUp 6s ease-in-out infinite;
    white-space: nowrap;
    z-index: 20;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.float-notif-avatar {
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
    background: var(--accent-primary-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-notif-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.float-notif-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-section {
    padding: 100px 5%;
    text-align: center;
}

.how-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-num {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, transparent, var(--bg-card2) 20%, var(--bg-card2) 80%, transparent);
}

.features-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    max-width: 1100px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    grid-column: span 4;
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card--large {
    grid-column: span 6;
}

.feature-card--wide {
    grid-column: span 6;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.feature-tag {
    display: inline-block;
    background: var(--accent-primary-dim);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--accent-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    margin-top: auto;
}

.feature-tag--blue {
    background: var(--accent-blue-dim);
    border-color: rgba(91, 141, 239, 0.2);
    color: var(--accent-blue);
}

/* =========================================
   SOCIAL / TICKER
   ========================================= */
.social-section {
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;
}

.social-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.social-sub {
    color: var(--text-muted);
    margin-bottom: 48px;
}

.vip-ticker {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.vip-ticker::before,
.vip-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.vip-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.vip-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.vip-ticker-inner {
    display: flex;
    gap: 24px;
    animation: ticker 20s linear infinite;
    width: max-content;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.vip-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    color: var(--text-muted);
}

/* =========================================
   OG CODE CHECKER
   ========================================= */
.og-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.og-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 60px 50px;
    max-width: 640px;
    width: 100%;
    text-align: center;
}

.og-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.og-card p {
    color: var(--text-muted);
    margin-bottom: 36px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 8px 8px 8px 20px;
    gap: 10px;
    transition: border-color 0.2s;
    margin-bottom: 12px;
}

.search-box:focus-within {
    border-color: rgba(0, 255, 136, 0.4);
}

.search-hash {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    width: 120px;
    outline: none;
    letter-spacing: 6px;
    font-family: 'Outfit', monospace;
}

.search-box input::placeholder {
    color: #333;
    letter-spacing: 6px;
}

.search-box button {
    background: var(--accent-primary);
    color: var(--bg-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.search-box button:hover {
    transform: scale(1.03);
}

.result-container {
    min-height: 28px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.claimed-progress {
    text-align: left;
}

.claimed-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.claimed-fill {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-blue));
    height: 100%;
    border-radius: 99px;
    animation: fillExpand 2s ease-out forwards;
}

@keyframes fillExpand {
    from {
        width: 0;
    }
}

.claimed-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.claimed-count {
    color: var(--accent-primary);
}

/* =========================================
   WAITLIST SECTION
   ========================================= */
.waitlist-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.waitlist-box {
    background: var(--bg-card);
    border: 1px solid rgba(91, 141, 239, 0.25);
    border-radius: 28px;
    padding: 60px 50px;
    max-width: 680px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(91, 141, 239, 0.08);
}

.waitlist-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(91, 141, 239, 0.12), transparent 70%);
    pointer-events: none;
}

.waitlist-badge {
    display: inline-block;
    background: var(--accent-blue-dim);
    border: 1px solid rgba(91, 141, 239, 0.25);
    color: var(--accent-blue);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.waitlist-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.waitlist-box p {
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    margin-inline: auto;
    line-height: 1.7;
}

.waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.waitlist-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-form input:focus {
    border-color: rgba(91, 141, 239, 0.4);
}

.waitlist-form input::placeholder {
    color: var(--text-dim);
}

.waitlist-form button {
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    padding: 0 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.waitlist-form button:hover {
    background: var(--accent-primary);
}

.waitlist-result {
    min-height: 24px;
    font-size: 0.9rem;
    font-weight: 600;
}

.waitlist-perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.perk {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 5%;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .feature-card,
    .feature-card--large,
    .feature-card--wide {
        grid-column: span 3;
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
        min-height: unset;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-bar {
        margin: 0 auto;
    }

    .header-nav {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card,
    .feature-card--large,
    .feature-card--wide {
        grid-column: span 1;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-form button {
        padding: 16px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .og-card {
        padding: 40px 24px;
    }

    .waitlist-box {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .stats-bar {
        width: 100%;
        justify-content: space-between;
    }

    .float-notif {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .primary-action {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .launch-btn span {
        display: none;
    }

    .launch-btn svg {
        display: none;
    }

    .launch-btn {
        padding: 10px 14px;
    }
}