@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,500&display=swap');

:root {
    --gt-dark: #16110d;
    --gt-dark-2: #1f1811;
    --gt-gold: #c89016;
    --gt-gold-light: #e0b13a;
    --gt-cream: #d3c7a0;
    --gt-white: #fdfdfa;
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: radial-gradient(circle at 50% 35%, var(--gt-dark-2) 0%, var(--gt-dark) 65%, #0b0806 100%);
    color: var(--gt-cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.bg-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-rings::before,
.bg-rings::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 144, 22, 0.12);
}

.bg-rings::before {
    width: 60vmax;
    height: 60vmax;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spin 90s linear infinite;
}

.bg-rings::after {
    width: 85vmax;
    height: 85vmax;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    animation: spin 140s linear infinite reverse;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 640px;
    width: 100%;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.logo-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 144, 22, 0.35) 0%, rgba(200, 144, 22, 0) 70%);
    animation: pulse 3.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.92); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

.logo-wrap img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gt-gold-light);
    margin-bottom: 0.9rem;
    font-weight: 400;
}

h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gt-white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--gt-gold-light);
}

.divider {
    width: 90px;
    height: 2px;
    margin: 1.4rem auto;
    background: linear-gradient(90deg, transparent, var(--gt-gold) 50%, transparent);
}

p.lead {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gt-cream);
    opacity: 0.85;
    max-width: 460px;
    margin: 0 auto 2.2rem;
    font-weight: 300;
}

.tagline {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gt-gold);
    font-weight: 600;
}

footer {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(211, 199, 160, 0.45);
    letter-spacing: 0.05em;
    z-index: 1;
}

footer a {
    color: rgba(224, 177, 58, 0.7);
    text-decoration: none;
}

@media (max-width: 480px) {
    .logo-wrap {
        width: 150px;
        height: 150px;
    }
}
