* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #C4C4D1;
    --text-muted: #7A7A8C;
    --text-on-dark: #FFFFFF;
    --text-on-brand: #1A1A2E;

    /* Surface Colors */
    --surface-page: #0F0F1E;
    --surface-section: #1A1A2E;
    --surface-card: #252538;
    --surface-subtle: #2A2A42;
    --surface-elevated: #2E2E48;

    /* Action Colors */
    --action-primary: #D4AF37;
    --action-primary-hover: #E8C757;
    --action-primary-active: #B8941F;
    --action-secondary: #3A3A52;
    --action-strong: #D4AF37;
    --action-strong-hover: #F5D66D;

    /* Border Colors */
    --border-default: #3A3A52;
    --border-subtle: #2A2A42;
    --border-focus: #D4AF37;

    /* Status Colors */
    --status-success: #4CAF50;
    --status-warning: #FFA726;
    --status-error: #EF5350;

    /* Brand Colors */
    --brand-gold: #D4AF37;
    --brand-gold-glow: rgba(212, 175, 55, 0.4);

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.5);
    --shadow-gold-intense: 0 8px 30px rgba(212, 175, 55, 0.6);

    /* Typography Sizes */
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--surface-page);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: 1.6;
}

/* Animated Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: var(--brand-gold);
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
    box-shadow: 0 0 10px var(--brand-gold), 0 0 20px var(--brand-gold);
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }
}

/* Main Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-12) var(--space-4);
    text-align: center;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--space-4);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Name */
.logo-name {
    font-family: 'Cinzel', serif;
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--brand-gold);
    margin-bottom: var(--space-6);
    text-shadow: 0 0 20px var(--brand-gold-glow);
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 20px var(--brand-gold-glow), 0 0 30px var(--brand-gold-glow);
    }

    50% {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
    }
}

/* Main Title */
.main-title {
    font-family: 'Cinzel', serif;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--brand-gold);
    line-height: 1.3;
    margin-bottom: var(--space-6);
    text-shadow: 0 0 15px var(--brand-gold-glow);
    letter-spacing: 1.5px;
}

/* Subtitle */
.subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-weight: var(--font-normal);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.desktop-break {
    display: none;
}

/* Authority Badge */
.authority-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--action-primary);
    color: var(--text-on-brand);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-8);
    box-shadow: 0 4px 16px var(--brand-gold-glow);
    transition: all 0.3s ease-in-out;
}

.authority-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}

.badge-icon {
    color: var(--text-on-brand);
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Benefits List */
.benefits-list {
    margin: var(--space-8) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    max-width: 700px;
    text-align: left;
    padding: var(--space-4);
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease-in-out;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    background: var(--surface-elevated);
    border-color: var(--border-default);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-item:focus-within {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--brand-gold);
    filter: drop-shadow(0 0 8px var(--brand-gold-glow));
    transition: transform 0.3s ease;
    background: rgba(212, 175, 55, 0.15);
    padding: var(--space-2);
    border-radius: var(--radius-sm);
}

.benefit-text {
    font-weight: var(--font-normal);
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--action-primary);
    color: var(--text-on-brand);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-full);
    text-decoration: none;
    margin: var(--space-8) 0 var(--space-6);
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    background: var(--action-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-intense);
    border-color: transparent;
}

.cta-button:active {
    background: var(--action-primary-active);
    transform: translateY(0);
}

.cta-button:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: var(--shadow-gold), 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* Trust Seals */
.trust-seals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: var(--surface-section);
    border-radius: var(--radius-lg);
    border-top: 1px solid var(--border-subtle);
}

.seal-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: var(--font-normal);
}

.seal-icon {
    width: 16px;
    height: 16px;
    color: var(--brand-gold);
    filter: drop-shadow(0 0 5px var(--brand-gold-glow));
}

/* Footer */
.footer {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-subtle);
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-3);
}

.footer-icon {
    width: 28px;
    height: 28px;
    color: var(--brand-gold);
    filter: drop-shadow(0 0 8px var(--brand-gold-glow));
    animation: float 3s ease-in-out infinite;
}

.footer-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.footer-icon:nth-child(3) {
    animation-delay: 1s;
}

.footer-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: var(--font-normal);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .desktop-break {
        display: inline;
    }

    .hero-section {
        padding: var(--space-16) var(--space-6);
    }

    .logo-name {
        font-size: var(--text-4xl);
    }

    .main-title {
        font-size: var(--text-3xl);
    }

    .benefit-icon {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: var(--space-20) var(--space-8);
    }

    .logo-name {
        font-size: var(--text-5xl);
    }

    .main-title {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 767px) {

    /* Better balanced mobile layout */
    .hero-section {
        min-height: auto;
        padding: var(--space-8) var(--space-4);
    }

    .content-wrapper {
        padding: 0 var(--space-4);
    }

    /* Comfortable logo size */
    .logo-name {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-4);
        letter-spacing: 1.5px;
    }

    /* Readable title */
    .main-title {
        font-size: 20px;
        margin-bottom: var(--space-4);
        line-height: 1.4;
        letter-spacing: 1px;
    }

    /* Comfortable subtitle */
    .subtitle {
        font-size: 15px;
        margin-bottom: var(--space-6);
        line-height: 1.6;
    }

    /* Well-sized CTA button */
    .cta-button {
        width: 100%;
        max-width: 100%;
        font-size: 15px;
        font-weight: var(--font-bold);
        padding: var(--space-4) var(--space-4);
        margin: var(--space-6) 0 var(--space-4);
        min-height: 52px;
    }

    /* Comfortable trust seals */
    .trust-seals {
        flex-direction: column;
        gap: var(--space-3);
        padding: var(--space-4);
        margin-top: var(--space-4);
    }

    .seal-item {
        font-size: 13px;
        justify-content: center;
    }

    .seal-icon {
        width: 16px;
        height: 16px;
    }

    /* Comfortable footer */
    .footer {
        margin-top: var(--space-8);
        padding-top: var(--space-4);
    }

    .footer-icons {
        gap: var(--space-4);
        margin-bottom: var(--space-3);
    }

    .footer-icon {
        width: 26px;
        height: 26px;
    }

    .footer-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Extra small devices - only for very small screens */
@media (max-width: 360px) {
    .hero-section {
        padding: var(--space-6) var(--space-3);
    }

    .content-wrapper {
        padding: 0 var(--space-3);
    }

    .logo-name {
        font-size: var(--text-xl);
    }

    .main-title {
        font-size: 18px;
    }

    .subtitle {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: var(--space-3) var(--space-4);
        min-height: 48px;
    }
}

/* Accessibility - Focus Visible */
*:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}