:root {
    --glsh-bg-main: #0f172a;
    --glsh-bg-alt: #1e293b;
    --glsh-bg-card: #0f172a;
    --glsh-accent: #d4af37;
    --glsh-accent-hover: #fcd34d;
    --glsh-text-primary: #f8fafc;
    --glsh-text-secondary: #94a3b8;
    --glsh-border: rgba(212, 175, 55, 0.2);
    
    --glsh-font-heading: 'Playfair Display', serif;
    --glsh-font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--glsh-bg-main);
    color: var(--glsh-text-primary);
    font-family: var(--glsh-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.glsh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.glsh-top-nav {
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--glsh-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.glsh-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.glsh-brand-logo {
    font-family: var(--glsh-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--glsh-accent);
    letter-spacing: 2px;
}

.glsh-brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glsh-brand-name {
    font-family: var(--glsh-font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.glsh-brand-sub {
    font-size: 12px;
    color: var(--glsh-text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glsh-badge {
    border: 1px solid var(--glsh-accent);
    color: var(--glsh-accent);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.glsh-showcase-sect {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.glsh-showcase-sect::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(15,23,42,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.glsh-showcase-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.glsh-showcase-label {
    display: inline-block;
    color: var(--glsh-accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--glsh-accent);
    padding-bottom: 8px;
}

.glsh-showcase-title {
    font-family: var(--glsh-font-heading);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #ffffff;
}

.glsh-showcase-desc {
    font-size: 18px;
    color: var(--glsh-text-secondary);
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.glsh-showcase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.glsh-sc-card {
    background-color: var(--glsh-bg-alt);
    border: 1px solid var(--glsh-border);
    padding: 32px 24px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glsh-sc-card:hover {
    transform: translateY(-5px);
    border-color: var(--glsh-accent);
}

.glsh-sc-title {
    font-family: var(--glsh-font-heading);
    font-size: 20px;
    color: var(--glsh-accent);
    margin-bottom: 12px;
}

.glsh-sc-text {
    font-size: 14px;
    color: var(--glsh-text-secondary);
}

/* Common Section */
.glsh-info-sect {
    padding: 100px 0;
}

.glsh-bg-alt {
    background-color: var(--glsh-bg-alt);
}

.glsh-sect-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.glsh-sect-title {
    font-family: var(--glsh-font-heading);
    font-size: 42px;
    margin-bottom: 24px;
}

.glsh-sect-intro {
    font-size: 16px;
    color: var(--glsh-text-secondary);
}

.glsh-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.glsh-feature-box {
    background-color: var(--glsh-bg-card);
    border: 1px solid var(--glsh-border);
    padding: 40px 32px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.glsh-feature-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.glsh-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--glsh-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.glsh-feature-box:hover::before {
    transform: scaleY(1);
}

.glsh-feat-kicker {
    display: block;
    font-size: 12px;
    color: var(--glsh-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.glsh-feat-title {
    font-family: var(--glsh-font-heading);
    font-size: 26px;
    margin-bottom: 16px;
}

.glsh-feat-desc {
    font-size: 15px;
    color: var(--glsh-text-secondary);
    margin-bottom: 24px;
}

.glsh-feat-list {
    list-style: none;
}

.glsh-feat-list li {
    font-size: 14px;
    color: var(--glsh-text-primary);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.glsh-feat-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--glsh-accent);
}

/* Footer */
.glsh-foot-wrap {
    background-color: #0b1120;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glsh-border);
}

.glsh-foot-slogan {
    font-family: var(--glsh-font-heading);
    font-size: 32px;
    color: var(--glsh-accent);
    text-align: center;
    margin-bottom: 64px;
}

.glsh-foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.glsh-foot-heading {
    font-family: var(--glsh-font-heading);
    font-size: 18px;
    margin-bottom: 24px;
    color: #ffffff;
}

.glsh-foot-text {
    font-size: 14px;
    color: var(--glsh-text-secondary);
}

.glsh-foot-contact,
.glsh-foot-nav {
    list-style: none;
}

.glsh-foot-contact li {
    font-size: 14px;
    color: var(--glsh-text-secondary);
    margin-bottom: 16px;
}

.glsh-foot-contact strong {
    color: var(--glsh-text-primary);
    display: block;
    margin-bottom: 4px;
}

.glsh-foot-nav li {
    margin-bottom: 12px;
}

.glsh-foot-nav a {
    color: var(--glsh-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.glsh-foot-nav a:hover {
    color: var(--glsh-accent);
}

.glsh-foot-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: var(--glsh-text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .glsh-showcase-title {
        font-size: 52px;
    }
    
    .glsh-foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .glsh-nav-inner {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        height: auto;
        padding: 16px 0;
    }
    
    .glsh-showcase-cards,
    .glsh-grid-three {
        grid-template-columns: 1fr;
    }
    
    .glsh-showcase-title {
        font-size: 40px;
    }
    
    .glsh-showcase-sect {
        padding: 60px 0 40px;
    }
}
