* {
box-sizing: border-box;
}

body {
margin: 0;
min-height: 100vh;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
background:
radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 30%),
linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
color: #ffffff;
}

.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}

.card {
width: 100%;
max-width: 620px;
text-align: center;
padding: 56px 32px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(212, 175, 55, 0.18);
border-radius: 24px;
backdrop-filter: blur(6px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
transition: 0.3s ease;
}

.logo {
width: 120px;
margin-bottom: 24px;
border-radius: 16px;
}

.eyebrow {
margin: 0 0 12px;
color: #d4af37;
font-size: 0.75rem;
letter-spacing: 0.25em;
font-weight: 600;
}

h1 {
margin: 0;
font-size: 3.2rem;
font-weight: 700;
letter-spacing: -0.02em;
}

.divider {
width: 110px;
height: 2px;
opacity: 0.7;
background: linear-gradient(90deg, #d4af37, transparent);
margin: 22px auto 26px;
border-radius: 999px;
opacity: 0.95;
}

.description {
color: #d7d7d7;
font-size: 1.05rem;
}

.line {
width: 90px;
height: 3px;
background: linear-gradient(90deg, #d4af37, #f5d76e);
margin: 15px auto;
border-radius: 3px;
}

.info{
display: flex;
justify-content: center;
}

.contact {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
margin-top: 18px;
}

.info-item {
display: flex;
align-items: center;
gap: 10px;
color: #ccc;
font-size: 14px;
text-align: center;
}

.icon {
width: 16px;
height: 16px;
flex-shrink: 0;
}

.info-item a {
color: #d4af37;
text-decoration: none;
}

.info-item a:hover {
text-decoration: underline;
}
