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

/* Base */
html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #000000;
    background-color: #fdfbfb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Quote */
.quote {
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: #666666;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.quote::before,
.quote::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
}

.quote::before {
    left: -30px;
}

.quote::after {
    right: -30px;
}

/* Typography */
.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Action */
.action {
    margin-bottom: 3rem;
}

.link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    padding: 1.25rem 3rem;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-size: 0.875rem;
    min-width: 120px;
}

.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.link::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.link:hover::before {
    left: 0;
}

.link:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.link:hover::after {
    opacity: 1;
}

.link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.link:focus {
    outline: 2px solid #000000;
    outline-offset: 3px;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: #666666;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 250px;
    }

    .logo-container {
        margin-bottom: 3rem;
    }

    .tagline {
        font-size: clamp(1rem, 4vw, 1.3rem);
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        margin-bottom: 3rem;
    }

    .quote {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        margin-bottom: 2rem;
        padding: 0;
    }

    .quote::before,
    .quote::after {
        display: none;
    }

    .action {
        margin-bottom: 3rem;
    }

    .footer {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .logo {
        max-width: 200px;
    }

    .logo-container {
        margin-bottom: 2rem;
    }

    .tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .quote {
        font-size: 0.8rem;
    }

    .link {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}