/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cactus Classical Serif', Georgia, 'Times New Roman', serif;
    background-color: #FAFAFA;
    color: #2A2A2A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #FFD700;
    margin: 0;
}

/* Hero Section */
.hero {
    background-color: #FAFAFA;
    padding: 48px 0 90px 0;
    text-align: center;
}

/* Uniform vertical spacing in hero */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero .logo-image,
.hero .main-headline,
.hero .join-button,
.hero .description {
    margin: 0;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FFD700;
    color: #2A2A2A;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.logo-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    background: transparent;
    margin: 10px auto 20px auto;
    display: block;
}

.main-headline {
    font-size: 90px;
    font-weight: 700;
    color: #2A2A2A;
    margin: 12px 0 12px 0;
    line-height: 1.2;
}

.subheadline {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Hero CTA Button */
.hero-launch-button {
    display: inline-block;
    background-color: #FFD700;
    color: #2A2A2A;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Cactus Classical Serif', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}

.hero-launch-button:hover {
    background-color: #FFC107;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.hero-launch-button:active {
    transform: translateY(1px);
}


.description {
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Backgrounds and Dividers */
.section-with-bg {
    background-color: #F5F5F5;
    position: relative;
}

.section-divider-top,
.section-divider-bottom {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700 10%, #FFD700 90%, transparent);
    margin: 0;
    width: 100%;
    position: relative;
}

.section-divider-top {
    margin-bottom: 40px;
}

.section-divider-bottom {
    margin-top: 40px;
}

/* The Problem Section */
.the-problem {
    position: relative;
}

.the-problem .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem-content p {
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    background-color: #F5F5F5;
    position: relative;
}

.how-it-works .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    color: #2A2A2A;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Timeline Container */
.timeline-container {
    margin-top: 60px;
    position: relative;
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-connector {
    display: none;
}

/* Step Content */
.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.step-badge {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #2A2A2A;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    color: #2A2A2A;
}

.step-description {
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 1.6;
}

.step-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.step-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.left-content {
    grid-column: 1;
}

.right-content {
    grid-column: 2;
}

.left-image {
    grid-column: 1;
}

.right-image {
    grid-column: 2;
}

/* Cards container for other sections */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.step-card {
    background-color: #F0F0F0;
    border: 3px solid #FFD700;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-number {
    width: 48px;
    height: 48px;
    background-color: #FFD700;
    color: #2A2A2A;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #2A2A2A;
    margin-bottom: 16px;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 1.6;
}

/* Who's Behind Section */
.whos-behind {
    background-color: #F5F5F5;
    padding: 100px 0;
}

.behind-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.behind-content p {
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Why Closr Section */
.why-closr {
    background-color: #FAFAFA;
    padding: 100px 0;
}

.why-closr .section-title {
    font-size: 56px;
    font-weight: 700;
    color: #2A2A2A;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-closr .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #2A2A2A;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.why-closr-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
}

.why-closr .benefit-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
    padding: 40px 0;
    margin-bottom: 0;
    overflow: visible;
}

.why-closr .benefit-title {
    font-size: 28px;
    font-weight: 700;
    color: #2A2A2A;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.why-closr .benefit-text {
    font-size: 16px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.benefit-divider {
    height: 0.5px;
    background-color: #D4D4D4;
    width: 100%;
    margin: 0;
}

/* Legacy styles for other sections */
.benefit-card {
    background-color: #F0F0F0;
    border: 1px solid #FFD700;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
}

.benefit-card .card-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.benefit-card .card-title {
    font-size: 24px;
    font-weight: 700;
    color: #2A2A2A;
    margin-bottom: 12px;
}

.benefit-card .card-description {
    font-size: 16px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 1.6;
}

/* Skip the Line Section */
.skip-the-line {
    background-color: #FAFAFA;
    padding: 0;
    text-align: center;
}

.skip-the-line .container {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 320px;
}

.waitlist-form {
    margin-top: 60px;
}

.input-group {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 16px;
}

.email-input {
    background-color: #FAFAFA;
    border: 1px solid #FFD700;
    border-radius: 6px 0 0 6px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Cactus Classical Serif', Georgia, 'Times New Roman', serif;
    color: #2A2A2A;
    width: 350px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input::placeholder {
    color: #2A2A2A;
}

.email-input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.join-button {
    background-color: #FFD700;
    color: #2A2A2A;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 12px 40px;
    font-size: 16px;
    font-family: 'Cactus Classical Serif', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

/* Curve the hero launch button without affecting the form button */
.hero .join-button {
    border-radius: 9999px;
    padding: 12px 28px;
    margin-top: 4px;
    margin-bottom: 28px;
}

/* Add spacing from hero CTA to the paragraph below */
.hero .description {
    margin-top: 8px;
}

.join-button:hover {
    background-color: #FFC107;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.form-subtext {
    font-size: 14px;
    color: #2A2A2A;
    margin-top: 16px;
}

.form-response {
    margin-top: 16px;
    text-align: center;
}

.success-message {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 0;
}

.faq-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    color: #2A2A2A;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 16px;
    font-weight: 400;
    color: #2A2A2A;
    line-height: 1.6;
}

/* Tally Waitlist Section */
.waitlist-section {
    padding: 0;
    text-align: center;
}

.waitlist-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2A2A2A;
    margin-bottom: 30px;
    line-height: 1.2;
}

.waitlist-section iframe {
    border-radius: 12px;
    background-color: #FAFAFA;
}

/* Footer */
.footer {
    background-color: #FAFAFA;
    padding: 30px 0 20px 0;
    border-top: 1px solid #E0E0E0;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 20px;
}

/* Left Section - Instagram */
.footer-left {
    flex: 0 0 auto;
    min-width: 150px;
}

.instagram-cta-text {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instagram-cta-link {
    display: block;
    font-size: 15px;
    color: #2A2A2A;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.instagram-cta-link:hover {
    color: #FFD700;
}

.instagram-cta-subtext {
    font-size: 11px;
    color: #999;
    margin: 0;
}

/* Middle Section - Links */
.footer-middle {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legal-link {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-link:hover {
    color: #2A2A2A;
}

/* Right Section - Logo & Tagline */
.footer-right {
    flex: 0 0 auto;
    text-align: center;
    min-width: 120px;
}

.footer-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.footer-tagline {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.footer-cta {
    text-align: center;
    margin: 20px 0;
}

.instagram-cta {
    max-width: 500px;
    margin: 0 auto;
}

.instagram-cta-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.instagram-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #2A2A2A;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-cta-link:hover {
    color: #FFD700;
}

.instagram-cta-subtext {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.footer-content {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.legal-link {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #2A2A2A;
}

.copyright {
    font-size: 10px;
    color: #999;
    margin: 15px 0 0 0;
    text-align: center;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
        flex: 1;
    }

    .footer-middle {
        justify-content: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2A2A2A;
}

.social-separator {
    color: #999;
    font-size: 13px;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }
    
    /* Ensure proper touch targets */
    .social-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 4px;
    }
    
    .legal-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .back-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Improve form usability on mobile */
    .email-input {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 6px;
    }
    
    .join-button {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 6px;
    }
    
    /* Ensure text is readable */
    .section-content p,
    .section-content li {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Why Closr Mobile */
    .why-closr .benefit-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 0;
        text-align: center;
    }

    .why-closr .benefit-title {
        font-size: 22px;
        text-align: center;
    }

    .why-closr .benefit-text {
        font-size: 14px;
        text-align: center;
    }

    .why-closr {
        padding: 50px 0;
    }

    .why-closr .section-title {
        font-size: 40px;
        margin-bottom: 12px;
        text-align: center;
    }

    .why-closr .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }
    
    .main-headline {
        font-size: 120px;
    }
    
    .subheadline {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .timeline-step {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .step-badge {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .step-title {
        font-size: 28px;
    }
    
    .step-description {
        font-size: 17px;
    }
    
    .step-image img {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .timeline-container {
        margin-top: 40px;
    }
    
    .timeline-step {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .left-content,
    .right-content {
        order: 1;
    }
    
    .left-image,
    .right-image {
        order: 2;
    }
    
    .step-image img {
        height: 320px;
    }
    
    .step-header {
        gap: 16px;
    }
    
    .step-badge {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }
    
    .step-title {
        font-size: 26px;
    }
    
    .step-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 44px 0 48px;
    }
    
    .main-headline {
        font-size: 64px;
        line-height: 0.9;
        margin: 8px 0 10px 0;
    }
    
    .subheadline {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .tagline {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .description {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin-top: 10px;
    }
    
    .coming-soon-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 24px;
    }
    
    .logo-image {
        width: 220px;
        height: 220px;
        margin: 16px auto 16px auto;
    }
    
    .why-closr,
    .whos-behind {
        padding: 50px 0;
    }
    
    .the-problem .container,
    .how-it-works .container,
    .skip-the-line .container,
    .faq-section .container,
    .waitlist-section .container {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    
    .section-divider-top {
        margin-bottom: 20px;
    }
    
    .section-divider-bottom {
        margin-top: 20px;
    }
    
    .faq-item {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .faq-question {
        font-size: 20px;
        text-align: center;
    }
    
    .faq-answer {
        font-size: 15px;
        text-align: center;
    }
    
    .problem-content p,
    .behind-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 40px;
        line-height: 1.1;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-closr .cards-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    
    /* Timeline responsive */
    .timeline-container {
        margin-top: 30px;
    }
    
    .timeline-step {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .left-content,
    .right-content {
        order: 1;
        text-align: center;
    }
    
    .left-image,
    .right-image {
        order: 2;
    }
    
    .step-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .step-badge {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 24px;
        text-align: center;
    }
    
    .step-description {
        font-size: 16px;
        text-align: center;
    }
    
    .step-image img {
        height: 280px;
    }
    
    
    .benefit-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .benefit-description {
        font-size: 15px;
    }
    
    .step-card,
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-card .card-icon {
        font-size: 36px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .card-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .card-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
        top: -16px;
        left: 20px;
    }
    
    .input-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .email-input {
        border-radius: 6px;
        width: 100%;
        max-width: 350px;
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .join-button {
        border-radius: 6px;
        width: 100%;
        max-width: 350px;
        padding: 14px 40px;
        font-size: 16px;
    }
    
    .form-subtext {
        font-size: 13px;
        margin-top: 12px;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-logo-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-cta {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .instagram-cta {
        max-width: 100%;
    }
    
    .instagram-cta-text {
        font-size: 12px;
    }
    
    .instagram-cta-link {
        font-size: 16px;
    }
    
    .instagram-cta-subtext {
        font-size: 13px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links {
        gap: 16px;
        justify-content: center;
    }
    
    .social-link {
        font-size: 14px;
    }
    
    .waitlist-section {
        padding: 60px 0;
    }
    
    .waitlist-section .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

	/* Raise and space hero CTA specifically on mobile */
	.hero .join-button {
		margin-top: 2px;
		margin-bottom: 24px;
	}
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 30px 0 32px;
    }
    
    .main-headline {
        font-size: 48px;
        line-height: 0.9;
        margin: 6px 0 8px 0;
    }
    
    .subheadline {
        font-size: 24px;
        line-height: 1.1;
        text-align: center;
    }
    
    .tagline {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .description {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        margin-top: 10px;
    }
    
    .coming-soon-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 20px;
    }
    
    .logo-image {
        width: 180px;
        height: 180px;
        margin: 12px auto 14px auto;
    }

	/* Raise and space hero CTA specifically on small mobile */
	.hero .join-button {
		margin-top: 2px;
		margin-bottom: 22px;
	}

	/* Ensure Join the Waitlist section has room on small screens */
	.skip-the-line .container {
		padding-top: 48px;
		padding-bottom: 48px;
		min-height: 300px;
	}
}
