:root {
    --brand-navy: #25396d; 
    --brand-gold: #d7c691; 
    --white: #ffffff;
    --body-reg-size: 16px;
    --body-reg-lh: 24px;
    --button-size: 16px;
    --button-lh: 24px;
}

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

body {
    background-color: var(--brand-navy);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* --- Side Patterns --- */
.side-strip {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px; 
    z-index: 1;
    background-image: url('assets/pattern-bg.svg'); 
    background-repeat: repeat-y;
    background-size: contain;
    animation: slidepattern 20s linear infinite;
}

.strip-left { left: 0; }
.strip-right { 
    right: 0; 
    animation-direction: reverse; 
}

@keyframes slidepattern {
    from { background-position: 0 0; }
    to { background-position: 0 500px; }
}

/* --- Layout --- */
.content-container {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0 100px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    padding: 60px 0;
}

.logo-main { 
    width: 80px;
    height: auto; 
    margin: 0;
}

/* --- Hero Section --- */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-headline {
    font-size: clamp(2.3rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-headline span { 
    color: var(--brand-gold);
    font-size: clamp(2rem, 4vw, 3rem); 
    line-height: 1.2;
    font-weight: 500;
    display: block;
    margin-top: 8px;
    letter-spacing: -0.02em;
}

.sub-statement {
    font-size: var(--body-reg-size);
    line-height: var(--body-reg-lh);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}

/* --- Button --- */
.btn-cta {
    background-color: var(--brand-gold);
    color: var(--brand-navy);
    padding: 12px 32px;
    font-size: var(--button-size);
    line-height: var(--button-lh);
    font-weight: 700;
    border-radius: 80px; 
    display: inline-block; 
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: 3px solid rgba(215, 198, 145, 0.5);
    outline-offset: 4px;
}

/* --- Footer --- */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.label { 
    font-size: 12px;
    letter-spacing: 2px; 
    color: var(--brand-gold); 
    opacity: 0.7; 
}

.partner-img { 
    height: 130px; 
    width: auto; 
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .side-strip { width: 40px; }
    .content-container { padding: 0 40px; }
    .logo-main { width: 60px; }
    .hero-headline { font-size: 2.5rem; }
}

.social-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.social-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}