/* Base styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;

    /* DARK BACKGROUND */
    background-color: #0f1418;

    /* MAIN TEXT */
    color: #EDEDED;

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
  
.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}
  
.logo {
    width: 500px;
    margin-bottom: 1rem;
}
  
h1 {
    font-size: 5rem;
    margin: 0.5rem 0;
}

.logo-text {
    text-align: center;
    line-height: 1;
}
  
.title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
  
.subtitle {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
}
  
/* ACCENT */
.tagline {
    font-size: 2rem;
    color: #86bbd8;
    margin-bottom: 1rem;
}
  
.description {
    font-size: 1.5rem;
    line-height: 1.5;

    /* MUTED WHITE */
    color: #CFCFCF;

    margin-bottom: 2rem;
}
  
/* CTA */
.cta-button {
    font-size: .85rem;
    background-color: #86bbd8;
    color: #070A0F;

    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;

    transition: background-color 0.25s ease, transform 0.15s ease;
}
  
.cta-button:hover {
    background-color: #3AA3FF;
    transform: translateY(-1px);
}

.footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.95rem;

    /* SECONDARY ACCENT */
    color: #3AA3FF;

    padding: 2rem 1rem;
}
