@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Raleway:wght@300;400;500;600&display=swap');

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

body {
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 42px 20px;
    font-family: 'Raleway', sans-serif;
    color: #f6e8be;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.15), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(103, 155, 118, 0.18), transparent 22%),
        linear-gradient(135deg, #08110d 0%, #0f1711 38%, #171007 100%);
}

.orb {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.28;
    pointer-events: none;
}

.orb-left {
    left: -90px;
    bottom: -60px;
    background: rgba(212, 175, 55, 0.22);
}

.orb-right {
    top: -70px;
    right: -80px;
    background: rgba(110, 168, 126, 0.18);
}

.hero {
    width: min(1180px, 100%);
    padding: 52px;
    border-radius: 32px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        rgba(10, 18, 13, 0.9);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
}

.eyebrow {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 18px;
}

h1 {
    max-width: 760px;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.18;
    margin-bottom: 20px;
    color: #fff2c7;
}

.hero-copy {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #cdbf92;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #a88316, #e0c25b);
    color: #181105;
    box-shadow: 0 14px 36px rgba(168, 131, 22, 0.22);
}

.btn-secondary {
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: #f0ddb0;
    background: rgba(255, 255, 255, 0.02);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.08);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card span {
    display: inline-block;
    margin-bottom: 16px;
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.feature-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff2c7;
}

.feature-card p {
    line-height: 1.8;
    color: #c7ba91;
}

@media (max-width: 900px) {
    .hero {
        padding: 32px 22px;
    }

    .feature-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    body {
        padding: 18px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
