/* ========================================
   Rain Swell Landing Page Styles
   Author: Rain Swell Team
   Version: 1.0
   ======================================== */

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #667eea 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ========================================
   RAIN ANIMATION EFFECTS
   ======================================== */

.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.rain-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.raindrop {
    position: absolute;
    background: radial-gradient(circle, 
        rgba(147, 197, 253, 0.9) 0%, 
        rgba(59, 130, 246, 0.6) 60%, 
        rgba(29, 78, 216, 0.3) 100%);
    width: 2px;
    height: 2px;
    border-radius: 50%;
    animation: diagonalFall linear infinite;
    transform-origin: center;
    box-shadow: 0 0 1px rgba(147, 197, 253, 0.8);
}

.raindrop.heavy {
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, 
        rgba(147, 197, 253, 1) 0%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(29, 78, 216, 0.5) 100%);
    box-shadow: 0 0 2px rgba(147, 197, 253, 0.9), 0 0 4px rgba(59, 130, 246, 0.3);
}

.raindrop.light {
    width: 1.5px;
    height: 1.5px;
    background: radial-gradient(circle, 
        rgba(147, 197, 253, 0.7) 0%, 
        rgba(59, 130, 246, 0.4) 70%, 
        rgba(29, 78, 216, 0.2) 100%);
    box-shadow: 0 0 1px rgba(147, 197, 253, 0.5);
}

@keyframes diagonalFall {
    from {
        transform: translateY(-100vh) translateX(-50px) scale(0.5);
        opacity: 0;
    }
    5% {
        transform: translateY(-95vh) translateX(-45px) scale(1);
        opacity: 1;
    }
    95% {
        transform: translateY(95vh) translateX(45px) scale(1);
        opacity: 1;
    }
    to {
        transform: translateY(100vh) translateX(50px) scale(0.5);
        opacity: 0;
    }
}

.splash {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 1px;
    background: radial-gradient(ellipse, rgba(147, 197, 253, 0.8) 0%, rgba(59, 130, 246, 0.4) 40%, transparent 100%);
    border-radius: 50%;
    animation: particleSplash 0.3s ease-out forwards;
}

@keyframes particleSplash {
    0% {
        transform: scale(1) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scale(2) scaleY(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(3) scaleY(0.2);
        opacity: 0;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 60px 0 40px; /* Add padding to prevent content cutoff */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-text .logo {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #c7d2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-text .tagline {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
    color: #e2e8f0;
}

/* ========================================
   APP BADGES & BUTTONS
   ======================================== */

.app-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-badge:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.waitlist-button {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

/* ========================================
   PHONE MOCKUP
   ======================================== */

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Cloud layer above phone */
.cloud-layer {
    position: absolute;
    top: -60px;
    left: -50%;
    width: 200%;
    height: 80px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.2) 40%, 
        rgba(255, 255, 255, 0.15) 60%, 
        rgba(255, 255, 255, 0.25) 80%, 
        transparent 100%);
    border-radius: 40px;
    animation: cloudDrift 20s linear infinite;
    pointer-events: none;
    z-index: 3;
}

.cloud-layer::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 30%;
    width: 40%;
    height: 60px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.08) 30%, 
        rgba(255, 255, 255, 0.12) 70%, 
        transparent 100%);
    border-radius: 30px;
    animation: cloudDrift 25s linear infinite reverse;
}

.cloud-layer::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 30%;
    height: 40px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.06) 40%, 
        rgba(255, 255, 255, 0.1) 60%, 
        transparent 100%);
    border-radius: 20px;
    animation: cloudDrift 30s linear infinite;
}

@keyframes cloudDrift {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a202c, #2d3748);
    border-radius: 40px;
    border: 8px solid #4a5568;
    position: relative;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.app-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    z-index: 2;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="30" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="70" r="0.3" fill="rgba(147,197,253,0.1)"/><circle cx="80" cy="50" r="0.4" fill="rgba(59,130,246,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ========================================
   WHY DIFFERENT SECTION
   ======================================== */

.why-different {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
}

.why-different h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-different p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.highlight {
    font-weight: 700;
    color: #93c5fd;
    text-shadow: 0 0 10px rgba(147, 197, 253, 0.5);
}

/* ========================================
   FEATURES GRID
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(147, 197, 253, 0.2), 
        rgba(59, 130, 246, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(147, 197, 253, 0.4);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ========================================
   USE CASES
   ======================================== */

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.use-case {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.9) 0%, 
        rgba(147, 51, 234, 0.8) 50%, 
        rgba(168, 85, 247, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.use-case::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.use-case:hover::after {
    transform: scale(1);
}

.use-case:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(59, 130, 246, 0.4),
        0 0 30px rgba(147, 51, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.use-case h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #374151 100%);
    padding: 100px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* ========================================
   DIFFERENTIATOR SECTION
   ======================================== */

.differentiator {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.differentiator h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.differentiator p {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

/* ========================================
   COMING SOON SECTION
   ======================================== */

.coming-soon {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.coming-soon h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.coming-soon p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile-specific viewport fixes */
    .hero {
        min-height: calc(100vh - 120px); /* Account for mobile browser bars */
        min-height: calc(100dvh - 60px); /* Dynamic viewport with padding */
        padding: 80px 0 60px; /* Increased padding for mobile */
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 0 10px; /* Extra side padding for mobile */
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-top: 20px; /* Extra spacing from top on mobile */
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
        margin: 0 auto; /* Center the phone mockup */
    }
    
    .cloud-layer {
        top: -50px;
        height: 60px;
        left: -60%;
        width: 220%;
    }
    
    .cloud-layer::before {
        height: 45px;
        top: 8px;
    }
    
    .cloud-layer::after {
        height: 30px;
        top: 15px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-text .tagline {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px; /* Prevent text from touching edges */
    }
    
    .hero-text .logo {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .app-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .app-badge {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .waitlist-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    /* General Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 15px; /* Prevent title from touching edges */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .use-cases {
        padding: 0 10px;
        gap: 20px;
    }
    
    .use-case {
        padding: 25px 20px;
    }
    
    /* Text sections mobile optimization */
    .why-different {
        padding: 0 15px;
    }
    
    .why-different h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .why-different p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .about-content {
        padding: 0 15px;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .about-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    /* Differentiator section mobile */
    .differentiator {
        padding: 60px 0;
    }
    
    .differentiator h2 {
        font-size: 2rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .differentiator p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    /* Coming soon section mobile */
    .coming-soon {
        padding: 60px 0;
    }
    
    .coming-soon h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .coming-soon p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 80px; /* Even more padding for very small screens */
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .hero-text h1 {
        font-size: 1.9rem;
    }
    
    .hero-text .tagline {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 40px 0 30px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-text .tagline {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}