:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --black: #050505;
    --black-shade: #0A0A0A;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-dim: #666;
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --glow-color: rgba(201, 168, 76, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* GRAIN */
.grain-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 50;
    opacity: 0.4;
}

/* UTILS */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-dim {
    color: var(--text-dim);
}

.italic {
    font-style: italic;
}

.gold-text {
    color: var(--gold-light);
}

.mt-16 {
    margin-top: 1rem;
}

.mt-24 {
    margin-top: 1.5rem;
}

.mt-32 {
    margin-top: 2rem;
}

.mt-48 {
    margin-top: 3rem;
}

.mt-64 {
    margin-top: 4rem;
}

.max-600 {
    max-width: 600px;
}

.max-800 {
    max-width: 800px;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.full-width {
    width: 100%;
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* HERO SECTION - LEFT ALIGNED */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: radial-gradient(circle at 10% 10%, #0F0F0F 0%, #050505 100%);
    overflow: hidden;
}

.glow-top {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.header {
    position: absolute;
    top: 3rem;
    left: 1.5rem;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.logo {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(180deg, #F0D878 0%, #C9A84C 50%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.2));
    margin-bottom: 0.5rem;
    line-height: 1;
}

.divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2.5rem;
    box-shadow: 0 0 10px var(--gold);
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 800px;
}

.headline span {
    font-size: 0.75em;
    color: var(--text-secondary);
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #888;
    max-width: 650px;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

/* SECTION BASE */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-badge {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-title .small {
    font-size: 0.6em;
}

.gold-sep {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}

/* PROBLEM */
.big-quote {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding-left: 2rem;
    margin: 2.5rem 0;
    line-height: 1.4;
}

.check-list {
    list-style: none;
    margin-top: 2.5rem;
}

.check-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #999;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-list li::before {
    content: '×';
    color: #8B2020;
    font-size: 1.3rem;
    font-weight: bold;
}

.premium-card {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3rem;
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

cite.author {
    display: block;
    margin-top: 2rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-style: normal;
}

/* METHOD - SHIELDS */
.shield-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.1);
    margin-top: 4rem;
}

.shield-item {
    background: #080808;
    padding: 4rem 2rem;
    transition: background 0.3s;
}

.shield-item:hover {
    background: #0C0C0C;
}

.shield-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.1);
    margin-bottom: 1rem;
}

.shield-title {
    font-family: var(--font-display);
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.shield-tagline {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.shield-desc {
    font-size: 0.95rem;
    color: #888;
}

.shield-tags {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.shield-tags span {
    font-size: 0.65rem;
    font-family: var(--font-display);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.3rem 0.8rem;
    color: var(--gold-dark);
}

/* ARSENAL */
.arsenal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.arsenal-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 1.5rem;
    transition: all 0.3s;
}

.arsenal-card:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

.arsenal-card h4 {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.arsenal-card p {
    font-size: 0.85rem;
    color: #666;
}

.premium-box {
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 4rem;
    background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.05), transparent);
    position: relative;
}

.box-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold-dark);
    margin-bottom: 2rem;
}

.box-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #DDD;
    margin-bottom: 1.5rem;
}

.box-text {
    color: #888;
    font-size: 1rem;
}

.box-footer {
    margin-top: 3rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--gold-dark);
    letter-spacing: 0.4em;
}

/* COMMANDER */
.quote-border {
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gold-light);
}

.stat-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem;
    background: rgba(201, 168, 76, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    width: 100px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* FORM & REGISTRATION */
.form-card-full {
    background: #0A0A0A;
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 4rem;
    position: relative;
}

.field-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1rem;
    color: white;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.03);
}

/* BUTTONS */
.cta-button {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #F0D878, #C9A84C, #8B6914);
    color: var(--black);
    border: none;
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.hero-form .input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.5rem;
    max-width: 550px;
}

.hero-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0 1.5rem;
    outline: none;
}

/* FOOTER */
.footer {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.footer p {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: #444;
    text-transform: uppercase;
}

.glow-bottom {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 30vh;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    filter: blur(80px);
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content,
    .header {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero {
        background: radial-gradient(circle at center, #0F0F0F 0%, #050505 100%);
    }

    .hero-form .input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-form input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(201, 168, 76, 0.2);
        padding: 1.2rem;
    }

    .shield-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        margin-bottom: 2rem;
    }

    .section {
        padding: 5rem 0;
    }

    .form-card-full {
        padding: 2rem;
    }

    .header {
        width: 100%;
        top: 2rem;
    }
}