/* Global Hegemony — Landing page design system */

:root {
    --gh-gold: #D8A73A;
    --gh-gold-light: #E8C06A;
    --gh-gold-dark: #A67C1E;
    --gh-navy: #05080F;
    --gh-navy-mid: #0A0F1A;
    --gh-navy-panel: #111827;
    --gh-metal: #1C2433;
    --gh-metal-light: #2A3444;
    --gh-text: #F4F6FA;
    --gh-text-muted: #9AA8BC;
    --gh-blue: #3B82F6;
    --gh-red: #EF4444;
    --gh-max-width: 1600px;
    --gh-radius: 8px;
    --gh-radius-lg: 12px;
    --gh-glow-gold: 0 0 24px rgba(216, 167, 58, 0.35);
    --gh-glass: rgba(12, 16, 26, 0.72);
    --gh-border-gold: rgba(216, 167, 58, 0.45);
    --gh-touch: 48px;
    --gh-section-pad: clamp(32px, 5vw, 64px);
    --gh-space-1: 8px;
    --gh-space-2: 16px;
    --gh-space-3: 24px;
    --gh-space-4: 32px;
    --gh-space-5: 40px;
    --gh-space-6: 48px;
}

.gh-landing-layout {
    min-height: 100dvh;
    background: var(--gh-navy);
    color: var(--gh-text);
    overflow-x: hidden;
}

.gh-landing-layout:has(.gh-landing--mockup) {
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
}

.gh-landing-loading {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    background: var(--gh-navy);
}

.gh-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(216, 167, 58, 0.2);
    border-top-color: var(--gh-gold);
    border-radius: 50%;
    animation: gh-spin 0.8s linear infinite;
}

@keyframes gh-spin {
    to { transform: rotate(360deg); }
}

/* ── Page shell ── */

.gh-landing {
    position: relative;
    min-height: 100dvh;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59, 130, 246, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 90% 20%, rgba(239, 68, 68, 0.06), transparent),
        linear-gradient(180deg, var(--gh-navy) 0%, var(--gh-navy-mid) 40%, var(--gh-navy) 100%);
}

.gh-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gh-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(216, 167, 58, 0.4);
    border-radius: 50%;
    left: calc((var(--i) * 41px + 7%) % 100%);
    top: calc((var(--i) * 29px + 3%) % 100%);
    animation: gh-float calc(12s + var(--i) * 0.5s) ease-in-out infinite;
    animation-delay: calc(var(--i) * -0.4s);
}

@keyframes gh-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.7; }
}

/* ── Header ── */

.gh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: var(--gh-space-2);
    padding: var(--gh-space-1) clamp(16px, 3vw, 32px);
    max-width: var(--gh-max-width);
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(5, 8, 15, 0.92) 0%, rgba(5, 8, 15, 0.65) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(216, 167, 58, 0.1);
}

.gh-header-logo img {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
    transition: transform 0.2s ease;
}

.gh-header-logo:hover img {
    transform: scale(1.03);
}

.gh-header-nav {
    display: none;
    gap: 12px;
    margin-left: auto;
}

.gh-header-link {
    color: var(--gh-text-muted);
    text-decoration: none;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--gh-space-1) 4px;
    transition: color 0.2s ease;
}

.gh-header-link:hover {
    color: var(--gh-gold);
}

.gh-header-actions {
    display: flex;
    align-items: center;
    gap: var(--gh-space-1);
    margin-left: auto;
}

.gh-btn-header-login {
    display: none;
    min-height: 40px;
    padding: 8px 20px;
    background: transparent;
    color: var(--gh-gold);
    border: 1px solid var(--gh-gold);
    box-shadow: inset 0 0 0 1px rgba(216, 167, 58, 0.15);
    font-size: 13px;
}

.gh-btn-header-login:hover {
    background: rgba(216, 167, 58, 0.1);
    box-shadow: 0 0 16px rgba(216, 167, 58, 0.25);
}

.gh-lang-select-wrap {
    margin: 0;
}

.gh-lang-select {
    min-height: 36px;
    padding: 4px 28px 4px 10px;
    background: var(--gh-metal);
    border: 1px solid var(--gh-border-gold);
    border-radius: var(--gh-radius);
    color: var(--gh-gold);
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D8A73A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.gh-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: var(--gh-touch);
    height: var(--gh-touch);
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gh-border-gold);
    border-radius: var(--gh-radius);
    cursor: pointer;
}

.gh-menu-bar {
    display: block;
    height: 2px;
    background: var(--gh-gold);
    border-radius: 1px;
    transition: transform 0.2s ease;
}

.gh-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px 16px;
    max-width: var(--gh-max-width);
    margin: 0 auto;
    background: rgba(5, 8, 15, 0.98);
    border-bottom: 1px solid var(--gh-border-gold);
}

.gh-mobile-menu.is-open {
    display: flex;
}

.gh-mobile-menu a,
.gh-mobile-menu-btn {
    min-height: var(--gh-touch);
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: var(--gh-text);
    text-decoration: none;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--gh-radius);
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: inherit;
}

.gh-mobile-menu a:hover,
.gh-mobile-menu-btn:hover {
    background: rgba(216, 167, 58, 0.1);
    color: var(--gh-gold);
}

/* ── Main grid (hero + features | sidebar) ── */

.gh-main-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

.gh-sidebar--desktop {
    display: none;
}

.gh-main-left {
    display: flex;
    flex-direction: column;
    gap: var(--gh-space-2);
    order: 1;
    min-width: 0;
}

/* ── Hero ── */

.gh-hero {
    position: relative;
    padding: 0;
}

.gh-hero-visual {
    position: relative;
    border-radius: var(--gh-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gh-border-gold);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.gh-hero-bg {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 280px;
    overflow: hidden;
}

.gh-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    display: block;
    will-change: transform;
    filter: brightness(1.06) contrast(1.08) saturate(1.05);
}

.gh-hero-contrast-boost {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 50% 32%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.gh-hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 35%, rgba(5, 8, 15, 0.55) 100%),
        linear-gradient(180deg, rgba(5, 8, 15, 0.2) 0%, rgba(5, 8, 15, 0.45) 50%, rgba(5, 8, 15, 0.88) 100%),
        linear-gradient(90deg, rgba(5, 8, 15, 0.75) 0%, transparent 42%, transparent 68%, rgba(5, 8, 15, 0.35) 100%);
    pointer-events: none;
}

.gh-hero-smoke {
    position: absolute;
    width: 60%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(180, 190, 210, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: gh-smoke-drift 18s ease-in-out infinite;
}

.gh-smoke-1 {
    bottom: 10%;
    left: -10%;
}

.gh-smoke-2 {
    bottom: 20%;
    right: -15%;
    animation-delay: -9s;
    animation-duration: 22s;
}

.gh-smoke-3 {
    top: 25%;
    left: 30%;
    width: 40%;
    height: 30%;
    animation-delay: -5s;
    animation-duration: 20s;
    opacity: 0.35;
}

.gh-map-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gh-map-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: gh-marker-pulse 3s ease-in-out infinite;
}

.gh-map-marker--blue {
    background: var(--gh-blue);
    box-shadow: 0 0 10px var(--gh-blue);
}

.gh-map-marker--red {
    background: var(--gh-red);
    box-shadow: 0 0 10px var(--gh-red);
}

.gh-map-markers .gh-map-marker:nth-child(1) { top: 28%; left: 38%; }
.gh-map-markers .gh-map-marker:nth-child(2) { top: 34%; left: 62%; animation-delay: -1s; }
.gh-map-markers .gh-map-marker:nth-child(3) { top: 42%; left: 45%; animation-delay: -2s; }
.gh-map-markers .gh-map-marker:nth-child(4) { top: 38%; left: 72%; animation-delay: -0.5s; }

@keyframes gh-marker-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.gh-battle-line--delay2 {
    top: 52%;
    transform: rotate(4deg);
    animation-delay: -3s;
    animation-duration: 6s;
}

@keyframes gh-smoke-drift {
    0%, 100% { transform: translateX(0) scale(1); opacity: 0.5; }
    50% { transform: translateX(30px) scale(1.1); opacity: 0.8; }
}

.gh-battle-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gh-battle-line {
    position: absolute;
    height: 1px;
    width: 120%;
    left: -10%;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    animation: gh-battle-pulse 4s ease-in-out infinite;
}

.gh-battle-line--blue {
    color: var(--gh-blue);
    top: 35%;
    transform: rotate(-8deg);
}

.gh-battle-line--red {
    color: var(--gh-red);
    top: 42%;
    transform: rotate(5deg);
    animation-delay: -2s;
}

.gh-battle-line--delay {
    top: 48%;
    transform: rotate(-3deg);
    animation-delay: -1s;
    animation-duration: 5s;
}

@keyframes gh-battle-pulse {
    0%, 100% { opacity: 0; transform: translateX(-5%) rotate(var(--rot, -8deg)); }
    40%, 60% { opacity: 0.6; box-shadow: 0 0 12px currentColor; }
}

.gh-hero-copy {
    display: none;
}

/* ── Hero launcher (game-first) ── */

.gh-hero-launcher {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--gh-space-2);
    max-width: 100%;
    pointer-events: none;
}

.gh-hero-launcher > * {
    pointer-events: auto;
}

.gh-hero-headline {
    margin: 0 0 4px;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--gh-text);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.gh-hero-tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin: 0 0 var(--gh-space-1);
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: clamp(11px, 2vw, 14px);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gh-gold);
}

.gh-hero-tagline span:not(:last-child)::after {
    content: "·";
    margin-left: 12px;
    opacity: 0.45;
}

.gh-hero-pitch {
    margin-bottom: var(--gh-space-2);
    max-width: 480px;
}

.gh-hero-pitch > p {
    margin: 0 0 6px;
    font-size: clamp(12px, 1.8vw, 14px);
    line-height: 1.45;
    color: var(--gh-text-muted);
}

.gh-hero-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gh-hero-bullets li {
    position: relative;
    padding-left: 14px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(244, 246, 250, 0.88);
    margin-bottom: 2px;
}

.gh-hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--gh-gold);
    border-radius: 1px;
    transform: rotate(45deg);
}

.gh-hero-socials--mobile {
    display: flex;
    flex-direction: column;
    gap: var(--gh-space-1);
}

.gh-hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--gh-space-1);
    max-width: 360px;
}

/* ── Login panel ── */

.gh-login-panel {
    position: relative;
    z-index: 2;
}

.gh-login-eyebrow {
    margin: 0 0 var(--gh-space-1);
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gh-text-muted);
}

.gh-login-panel--compact .gh-login-card {
    padding: 12px 14px;
    transform: scale(0.9);
    transform-origin: top center;
    border-color: rgba(216, 167, 58, 0.22);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.gh-login-panel--compact .gh-login-eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
}

.gh-login-panel--compact .gh-login-header {
    margin-bottom: var(--gh-space-2);
}

.gh-login-panel--compact .gh-login-title {
    font-size: 15px;
}

.gh-login-panel--compact .gh-login-form {
    gap: 10px;
}

.gh-login-panel--compact .gh-input {
    min-height: 40px;
    font-size: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.gh-login-panel--compact .gh-btn-login {
    min-height: 42px;
    box-shadow:
        0 3px 12px rgba(216, 167, 58, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.gh-login-panel--compact .gh-btn-google--compact {
    min-height: 38px;
    font-size: 11px;
}

.gh-login-panel--compact .gh-login-footer {
    margin-top: var(--gh-space-1);
    font-size: 12px;
}

.gh-login-card {
    padding: clamp(20px, 3vw, 32px);
    background:
        linear-gradient(145deg, rgba(28, 36, 51, 0.92) 0%, rgba(12, 16, 26, 0.96) 100%);
    border: 1px solid rgba(216, 167, 58, 0.32);
    border-radius: var(--gh-radius-lg);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.gh-login-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gh-login-header--compact {
    flex-wrap: wrap;
    gap: 3px 5px;
    margin-bottom: 8px;
    justify-content: center;
}

.gh-login-eyebrow-inline {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gh-text-muted);
}

.gh-login-header--compact .gh-login-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gh-gold);
}

.gh-login-header--compact .gh-login-star {
    font-size: 10px;
}

.gh-login-star {
    color: var(--gh-gold);
    font-size: 10px;
    opacity: 0.7;
}

.gh-login-title {
    margin: 0;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gh-gold);
}

.gh-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gh-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gh-label {
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gh-text-muted);
}

.gh-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.gh-input-icon {
    position: absolute;
    left: 14px;
    color: var(--gh-gold);
    opacity: 0.6;
    font-size: 14px;
    pointer-events: none;
}

.gh-input {
    width: 100%;
    min-height: var(--gh-touch);
    padding: 12px 44px 12px 40px;
    background: rgba(5, 8, 15, 0.8);
    border: 1px solid rgba(216, 167, 58, 0.25);
    border-radius: var(--gh-radius);
    color: var(--gh-text);
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-input:focus {
    outline: none;
    border-color: var(--gh-gold);
    box-shadow: 0 0 0 3px rgba(216, 167, 58, 0.15);
}

.gh-input::placeholder {
    color: rgba(154, 168, 188, 0.5);
}

.gh-password-toggle {
    position: absolute;
    right: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--gh-text-muted);
    cursor: pointer;
    border-radius: var(--gh-radius);
}

.gh-password-toggle:hover {
    color: var(--gh-gold);
}

.gh-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gh-text-muted);
}

.gh-remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--gh-gold);
}

.gh-login-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
}

.gh-login-divider {
    color: var(--gh-text-muted);
    opacity: 0.4;
}

.gh-link {
    color: var(--gh-gold);
    text-decoration: none;
    font-weight: 600;
}

.gh-link:hover {
    text-decoration: underline;
}

.gh-login-alert {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: var(--gh-radius);
    font-size: 14px;
    border: 1px solid;
}

.gh-login-alert--info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.gh-login-alert--success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.gh-login-alert--danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

/* ── Buttons ── */

.gh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: var(--gh-touch);
    padding: 12px 24px;
    border-radius: var(--gh-radius);
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gh-btn:hover {
    transform: translateY(-1px);
}

.gh-btn:active {
    transform: translateY(0);
}

.gh-btn-primary,
.gh-btn-play {
    background: linear-gradient(180deg, var(--gh-gold-light) 0%, var(--gh-gold) 45%, var(--gh-gold-dark) 100%);
    color: #0A0F1A;
    border: 1px solid var(--gh-gold-dark);
    box-shadow: 0 4px 16px rgba(216, 167, 58, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.gh-btn-primary:hover,
.gh-btn-play:hover {
    box-shadow: var(--gh-glow-gold), 0 6px 20px rgba(216, 167, 58, 0.4);
}

.gh-btn-play {
    width: 100%;
    font-size: 18px;
    padding: 16px 32px;
    letter-spacing: 0.14em;
    box-shadow:
        0 4px 20px rgba(216, 167, 58, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.gh-btn-login {
    width: 100%;
}

/* Keep login loading spinner inside the button box */
.gh-btn-login .spinner-border {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-width: 0.15em;
}

.gh-btn-metal {
    background: linear-gradient(180deg, var(--gh-metal-light) 0%, var(--gh-metal) 100%);
    color: var(--gh-text);
    border: 1px solid var(--gh-border-gold);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gh-btn-metal:hover {
    border-color: var(--gh-gold);
    color: var(--gh-gold);
    box-shadow: 0 0 16px rgba(216, 167, 58, 0.2);
}

.gh-btn-google {
    width: 100%;
    background: #FFFFFF;
    color: #1F2937;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 12px;
}

.gh-btn-google:hover {
    background: #F9FAFB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gh-btn-google--hero {
    margin-top: 0;
}

.gh-btn-social {
    width: 100%;
    min-height: var(--gh-touch);
    font-size: 13px;
    letter-spacing: 0.06em;
}

.gh-btn-discord {
    background: #5865F2;
    color: #FFFFFF;
    border: 1px solid #4752C4;
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.gh-btn-discord:hover {
    background: #6875f5;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.45);
}

.gh-btn-google--compact,
.gh-btn-discord--compact {
    min-height: 42px;
    font-size: 12px;
    padding: 8px 16px;
    margin-top: 0;
}

.gh-btn-google--compact {
    margin-top: var(--gh-space-1);
}

.gh-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.gh-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* ── Sections ── */

.gh-section {
    position: relative;
    z-index: 1;
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: var(--gh-section-pad) clamp(16px, 3vw, 32px);
}

.gh-features {
    position: relative;
    z-index: 1;
    padding: 0;
}

.gh-section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: clamp(24px, 4vw, 40px);
}

.gh-section-head--compact {
    margin-bottom: 12px;
}

.gh-wing {
    color: var(--gh-gold);
    opacity: 0.5;
    font-size: 10px;
}

.gh-section-title {
    margin: 0;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gh-gold);
    text-align: center;
}

.gh-section-subtitle {
    text-align: center;
    color: var(--gh-text-muted);
    font-size: 15px;
    margin: -16px 0 32px;
}

/* ── Feature strip ── */

.gh-feature-strip {
    display: flex;
    flex-direction: column;
    background: var(--gh-glass);
    border: 1px solid var(--gh-border-gold);
    border-radius: var(--gh-radius-lg);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.gh-features {
    position: relative;
    z-index: 1;
    padding: 0;
}

.gh-features .gh-section-head--compact {
    margin-bottom: 8px;
}

.gh-features .gh-section-title {
    font-size: 15px;
}

.gh-feature-strip-item {
    flex: 1;
    padding: 12px 10px;
    text-align: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.gh-feature-strip-item:hover {
    background: rgba(216, 167, 58, 0.06);
    transform: translateY(-2px);
}

.gh-feature-strip-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 167, 58, 0.25), transparent);
}

.gh-features-grid {
    display: none;
}

.gh-glass-card {
    padding: clamp(20px, 3vw, 28px);
    text-align: center;
    background: var(--gh-glass);
    border: 1px solid var(--gh-border-gold);
    border-radius: var(--gh-radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gh-glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--gh-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(216, 167, 58, 0.1);
}

.gh-feature-icon {
    display: block;
    margin: 0 auto 8px;
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.gh-card-title {
    margin: 0 0 4px;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gh-text);
}

.gh-card-text {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
    color: var(--gh-text-muted);
}

/* ── Journey career (full-width) ── */

.gh-journey--career {
    padding-top: var(--gh-space-5);
    padding-bottom: var(--gh-space-5);
}

.gh-journey-career-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gh-space-2);
    max-width: 1200px;
    margin: 0 auto;
}

.gh-journey-career-card {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: var(--gh-space-2);
    background: var(--gh-glass);
    border: 1px solid var(--gh-border-gold);
    border-radius: var(--gh-radius-lg);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gh-journey-career-card:hover {
    transform: translateY(-4px);
    border-color: var(--gh-gold);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(216, 167, 58, 0.1);
}

.gh-journey-career-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: var(--gh-space-1);
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 12px;
    font-weight: 700;
    color: var(--gh-gold);
    border: 1px solid var(--gh-border-gold);
    border-radius: 50%;
    background: rgba(216, 167, 58, 0.08);
}

.gh-journey--career .gh-journey-image-wrap {
    margin: 0 auto var(--gh-space-2);
    border-radius: var(--gh-radius);
    display: inline-block;
}

.gh-journey--career .gh-journey-image-wrap img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: unset;
    display: block;
}

.gh-journey-arrow--gold {
    color: var(--gh-gold);
    font-size: 32px;
    opacity: 0.75;
    text-shadow: 0 0 12px rgba(216, 167, 58, 0.4);
    transform: none;
}

.gh-journey--career .gh-journey-title {
    font-size: 18px;
    margin-bottom: var(--gh-space-1);
}

.gh-journey--career .gh-journey-text {
    font-size: 14px;
    max-width: 260px;
    margin: 0 auto;
}

/* ── Journey sidebar ── */

.gh-journey--sidebar {
    padding: 12px 8px;
    background: var(--gh-glass);
    border: 1px solid var(--gh-border-gold);
    border-radius: var(--gh-radius-lg);
    backdrop-filter: blur(12px);
}

.gh-journey--mobile {
    display: block;
    padding: var(--gh-space-2) clamp(16px, 3vw, 32px);
    max-width: var(--gh-max-width);
    margin: 0 auto;
}

.gh-journey--sidebar .gh-section-head--compact {
    margin-bottom: 10px;
}

.gh-journey--sidebar .gh-section-title {
    font-size: clamp(13px, 2vw, 16px);
}

.gh-journey-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gh-journey--sidebar .gh-journey-track {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gh-journey--sidebar .gh-journey-track::-webkit-scrollbar {
    display: none;
}

.gh-journey-card {
    width: 100%;
    max-width: 280px;
    text-align: center;
    flex-shrink: 0;
}

.gh-journey--sidebar .gh-journey-card {
    width: auto;
    max-width: none;
}

.gh-journey-image-wrap {
    border-radius: var(--gh-radius);
    overflow: hidden;
    border: 1px solid var(--gh-border-gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    line-height: 0;
}

.gh-journey--sidebar .gh-journey-image-wrap {
    margin-bottom: 6px;
    border-radius: 4px;
}

.gh-journey-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gh-journey--sidebar .gh-journey-image-wrap img {
    width: auto;
    height: auto;
    max-width: none;
    object-fit: unset;
    image-rendering: auto;
}

.gh-journey-card:hover .gh-journey-image-wrap img {
    transform: scale(1.05);
}

.gh-journey--sidebar .gh-journey-card:hover .gh-journey-image-wrap img {
    transform: none;
}

.gh-journey-title {
    margin: 0 0 6px;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gh-gold);
}

.gh-journey--sidebar .gh-journey-title {
    font-size: 10px;
    margin: 0;
    letter-spacing: 0.06em;
}

.gh-journey-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--gh-text-muted);
}

.gh-journey-caption {
    margin: 10px 0 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    color: var(--gh-text-muted);
}

.gh-journey-arrow {
    color: var(--gh-gold);
    font-size: 28px;
    line-height: 1;
    opacity: 0.6;
    transform: rotate(90deg);
}

.gh-journey--sidebar .gh-journey-arrow {
    transform: none;
    font-size: 16px;
    align-self: center;
    margin-top: 28px;
    flex-shrink: 0;
}

/* ── Stats ── */

.gh-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gh-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    background: var(--gh-glass);
    border: 1px solid var(--gh-border-gold);
    border-radius: var(--gh-radius-lg);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gh-stat-card:hover {
    border-color: var(--gh-gold);
    box-shadow: 0 0 20px rgba(216, 167, 58, 0.12);
}

.gh-stat-icon {
    margin-bottom: 8px;
    object-fit: contain;
}

.gh-stat-value {
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gh-text);
}

.gh-stats--premium .gh-stats-grid {
    gap: var(--gh-space-2);
}

.gh-stats--premium .gh-stat-card {
    padding: var(--gh-space-3) var(--gh-space-2);
}

.gh-stats--premium .gh-stat-icon {
    width: 72px;
    height: 72px;
    margin-bottom: var(--gh-space-2);
}

.gh-stats--premium .gh-stat-value {
    font-size: clamp(22px, 3.5vw, 32px);
    letter-spacing: 0.04em;
}

.gh-stats--premium .gh-stat-label {
    font-size: 13px;
    margin-top: 4px;
    color: var(--gh-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gh-stat-label {
    font-size: 12px;
    color: var(--gh-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Footer ── */

.gh-footer {
    position: relative;
    z-index: 1;
    max-width: var(--gh-max-width);
    margin: 0 auto;
    padding: 32px clamp(16px, 3vw, 32px) 48px;
    border-top: 1px solid rgba(216, 167, 58, 0.15);
}

.gh-footer--compact {
    padding: 12px clamp(16px, 3vw, 32px) 16px;
}

.gh-footer--compact .gh-footer-links {
    margin-bottom: 8px;
    gap: 4px 16px;
}

.gh-footer--compact .gh-footer-links a {
    min-height: 36px;
    font-size: 11px;
}

.gh-footer--compact .gh-footer-bottom {
    gap: 8px;
}

.gh-footer--compact .gh-footer-brand {
    font-size: 11px;
}

.gh-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 20px;
}

.gh-footer-links a {
    min-height: var(--gh-touch);
    display: inline-flex;
    align-items: center;
    color: var(--gh-text-muted);
    text-decoration: none;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.gh-footer-links a:hover {
    color: var(--gh-gold);
}

.gh-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.gh-footer-brand {
    font-size: 13px;
    color: var(--gh-text-muted);
}

/* ── Auth modal ── */

.gh-auth-modal-panel .ui-modal-content,
.gh-auth-modal {
    padding-top: 0;
}

.gh-auth-modal-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gh-space-1);
    margin-bottom: var(--gh-space-2);
}

.gh-auth-tab {
    min-height: 44px;
    padding: var(--gh-space-1);
    background: var(--gh-metal);
    border: 1px solid rgba(216, 167, 58, 0.2);
    border-radius: var(--gh-radius);
    color: var(--gh-text-muted);
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.gh-auth-tab.is-active {
    color: var(--gh-gold);
    border-color: var(--gh-gold);
    background: rgba(216, 167, 58, 0.08);
}

.gh-auth-modal-social {
    display: flex;
    flex-direction: column;
    gap: var(--gh-space-1);
    margin-top: var(--gh-space-2);
}

.gh-auth-modal-footer-link {
    margin: var(--gh-space-2) 0 0;
    text-align: center;
    font-size: 14px;
}

.gh-auth-register-prompt {
    text-align: center;
}

.gh-auth-register-prompt p {
    margin: 0 0 var(--gh-space-2);
    color: var(--gh-text-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* ── Animations ── */

.gh-fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: gh-fade-in 0.7s ease forwards;
}

.gh-fade-in:nth-child(2) { animation-delay: 0.1s; }
.gh-fade-in:nth-child(3) { animation-delay: 0.2s; }

@keyframes gh-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gh-landing.is-visible .gh-fade-in {
    opacity: 1;
    transform: none;
}

@media (max-width: 1023.98px) {
    .gh-hero-pitch > p {
        display: none;
    }

    .gh-hero-bg {
        min-height: 72dvh;
        aspect-ratio: unset;
    }

    .gh-hero-launcher {
        justify-content: flex-end;
        padding-bottom: var(--gh-space-4);
    }
}

@media (min-width: 1024px) {
    .gh-hero-socials--mobile {
        display: none;
    }

    .gh-hero-launcher {
        justify-content: flex-end;
        align-items: flex-start;
        max-width: 52%;
        padding: 16px 20px;
    }

    .gh-hero-headline {
        font-size: 28px;
    }

    .gh-hero-pitch > p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .gh-hero-bullets li {
        font-size: 11px;
        line-height: 1.35;
        margin-bottom: 1px;
    }

    .gh-hero-ctas {
        max-width: 200px;
        width: 100%;
    }

    .gh-btn-play {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* ── Tablet ── */

@media (min-width: 640px) {
    .gh-feature-strip {
        flex-direction: row;
        align-items: stretch;
    }

    .gh-feature-strip-divider {
        width: 1px;
        height: auto;
        min-height: 80%;
        align-self: center;
    }

    .gh-journey-career-track {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: var(--gh-space-1);
    }

    .gh-journey-career-card {
        flex: 1 1 calc(50% - 24px);
        max-width: 280px;
    }

    .gh-journey-arrow--gold {
        transform: none;
        align-self: center;
        margin-top: 80px;
        font-size: 28px;
    }

    .gh-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Desktop ── */

@media (min-width: 1024px) {
    .gh-landing--one-screen {
        min-height: 100dvh;
        max-height: 100dvh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .gh-landing--one-screen .gh-main-grid {
        flex: 1;
        min-height: 0;
        align-content: start;
    }

    .gh-journey--mobile {
        display: none;
    }

    .gh-header-logo img {
        width: 58px;
        height: 58px;
    }

    .gh-header-nav {
        display: flex;
        margin-left: var(--gh-space-2);
    }

    .gh-header-actions {
        margin-left: 0;
    }

    .gh-btn-header-login {
        display: inline-flex;
    }

    .gh-menu-toggle {
        display: none;
    }

    .gh-mobile-menu {
        display: none !important;
    }

    .gh-main-grid {
        display: grid;
        grid-template-columns: 7fr 3fr;
        grid-template-areas: "main sidebar";
        gap: var(--gh-space-3);
        align-items: start;
        padding-bottom: var(--gh-space-2);
    }

    .gh-main-left {
        grid-area: main;
        gap: var(--gh-space-1);
    }

    .gh-landing:not(.gh-landing--mockup) .gh-sidebar--desktop {
        display: flex;
        flex-direction: column;
        grid-area: sidebar;
        position: sticky;
        top: 60px;
        gap: 8px;
    }

    .gh-landing:not(.gh-landing--mockup) .gh-hero-bg {
        aspect-ratio: unset;
        height: min(340px, calc(100dvh - 280px));
        min-height: 260px;
        max-height: 340px;
    }

    .gh-journey--sidebar .gh-journey-image-wrap img {
        width: 56px;
        height: auto;
    }

    .gh-journey--sidebar .gh-journey-arrow {
        margin-top: 22px;
        font-size: 12px;
    }

    .gh-journey--sidebar .gh-section-title {
        font-size: 11px;
    }

    .gh-journey--sidebar .gh-journey-title {
        font-size: 8px;
    }

    .gh-main-grid {
        padding-bottom: 4px;
    }

    .gh-landing--one-screen .gh-footer {
        flex-shrink: 0;
    }

    .gh-header {
        flex-shrink: 0;
    }
}

@media (min-width: 1280px) {
    .gh-main-grid {
        gap: var(--gh-space-3);
    }

    .gh-landing:not(.gh-landing--mockup) .gh-hero-bg {
        max-height: 360px;
    }

    .gh-journey--sidebar .gh-journey-image-wrap img {
        width: 64px;
    }
}

@media (min-width: 1440px) {
    .gh-journey--sidebar .gh-journey-image-wrap img {
        width: 72px;
    }
}

/* ═══ Mockup 1:1 layout (17" / 1080p) ═══ */

.gh-landing--mockup {
    min-height: 100dvh;
    max-height: 100dvh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    max-width: var(--gh-max-width);
    margin: 0 auto;
    background:
        radial-gradient(ellipse 90% 60% at 20% 0%, rgba(59, 130, 246, 0.06), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 20%, rgba(216, 167, 58, 0.04), transparent 50%),
        linear-gradient(180deg, var(--gh-navy) 0%, var(--gh-navy-mid) 100%);
}

.gh-landing--mockup .gh-hero-subhead {
    display: none;
}

.gh-landing--mockup .gh-header {
    position: relative;
    top: auto;
    flex-shrink: 0;
    padding: 4px clamp(12px, 2vw, 24px);
}

.gh-landing--mockup .gh-particles {
    display: none;
}

.gh-mockup-body {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0 clamp(12px, 2vw, 24px);
    gap: 6px;
    overflow: hidden;
}

.gh-mockup-top {
    flex: 1 1 0;
    min-height: 0;
    gap: 8px;
    align-items: stretch;
    overflow: hidden;
}

/* grid layout moved to landing-mockup.css */

.gh-hero-subhead {
    margin: 0 0 6px;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gh-gold);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.gh-hero-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
    margin-bottom: 10px;
    max-width: 100%;
}

.gh-hero-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    line-height: 1.2;
    color: rgba(244, 246, 250, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.95);
}

.gh-hero-value img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7));
}

.gh-hero-or {
    margin: 4px 0 2px;
    text-align: center;
    font-size: 9px;
    color: rgba(154, 168, 188, 0.9);
    text-transform: lowercase;
}

.gh-landing--mockup .gh-hero-ctas {
    max-width: 100%;
    width: 100%;
    gap: 4px;
}

.gh-landing--mockup .gh-btn-play {
    min-height: 38px;
    padding: 9px 16px;
    font-size: 14px;
    letter-spacing: 0.12em;
}

.gh-landing--mockup .gh-hero-socials {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gh-landing--mockup .gh-btn-social {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 9px;
    letter-spacing: 0.04em;
    border-radius: 6px;
}

.gh-landing--mockup .gh-sidebar--desktop {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 6px;
    min-height: 0;
    overflow: hidden;
}

.gh-landing--mockup .gh-login-panel--compact {
    flex-shrink: 0;
    min-height: 0;
}

.gh-landing--mockup .gh-login-panel--compact .gh-login-card {
    transform: none;
    padding: 10px 12px;
    background: linear-gradient(160deg, rgba(18, 24, 36, 0.96) 0%, rgba(8, 11, 18, 0.98) 100%);
    border: 1px solid rgba(216, 167, 58, 0.28);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.gh-landing--mockup .gh-login-panel--compact .gh-login-header {
    margin-bottom: 6px;
}

.gh-landing--mockup .gh-login-panel--compact .gh-login-header--compact .gh-login-title {
    font-size: 11px;
}

.gh-landing--mockup .gh-login-panel--compact .gh-login-form {
    gap: 5px;
}

.gh-landing--mockup .gh-login-panel--compact .gh-field {
    gap: 3px;
}

.gh-landing--mockup .gh-login-panel--compact .gh-label {
    font-size: 9px;
    letter-spacing: 0.1em;
}

.gh-landing--mockup .gh-login-panel--compact .gh-input,
.gh-landing--mockup .gh-login-panel--compact input.gh-input {
    min-height: 30px !important;
    height: 30px;
    padding: 4px 30px 4px 30px !important;
    font-size: 12px !important;
    background: rgba(5, 8, 15, 0.9) !important;
    border: 1px solid rgba(216, 167, 58, 0.28) !important;
    color: var(--gh-text) !important;
    border-radius: 6px;
    box-shadow: none !important;
}

.gh-landing--mockup .gh-login-panel--compact .gh-input:focus {
    border-color: var(--gh-gold) !important;
    box-shadow: 0 0 0 2px rgba(216, 167, 58, 0.12) !important;
}

.gh-landing--mockup .gh-login-panel--compact .gh-input-icon {
    left: 10px;
    font-size: 11px;
}

.gh-landing--mockup .gh-login-panel--compact .gh-password-toggle {
    width: 28px;
    height: 28px;
    right: 2px;
    font-size: 12px;
}

.gh-landing--mockup .gh-login-panel--compact .gh-remember {
    min-height: 0;
    gap: 6px;
    font-size: 10px;
    margin: 2px 0;
}

.gh-landing--mockup .gh-login-panel--compact .gh-remember input {
    width: 12px;
    height: 12px;
    accent-color: var(--gh-gold);
}

.gh-landing--mockup .gh-login-panel--compact .gh-btn-login {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
    margin-top: 2px;
    letter-spacing: 0.1em;
    background: linear-gradient(180deg, var(--gh-gold-light) 0%, var(--gh-gold) 45%, var(--gh-gold-dark) 100%);
    border: 1px solid var(--gh-gold-dark);
    box-shadow: 0 3px 12px rgba(216, 167, 58, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.gh-landing--mockup .gh-login-panel--compact .gh-login-footer {
    margin-top: 4px;
    font-size: 9px;
}

.gh-landing--mockup .gh-login-panel--compact input:-webkit-autofill,
.gh-landing--mockup .gh-login-panel--compact input:-webkit-autofill:hover,
.gh-landing--mockup .gh-login-panel--compact input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(5, 8, 15, 0.95) inset !important;
    -webkit-text-fill-color: var(--gh-text) !important;
    caret-color: var(--gh-text);
    transition: background-color 9999s ease-out 0s;
}

.gh-journey-mockup {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 6px;
    background: linear-gradient(160deg, rgba(18, 24, 36, 0.92) 0%, rgba(8, 11, 18, 0.96) 100%);
    border: 1px solid rgba(216, 167, 58, 0.28);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.gh-journey-mockup-title {
    margin: 0 0 6px;
    text-align: center;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gh-gold);
    flex-shrink: 0;
}

.gh-journey-mockup-track {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: stretch;
    gap: 1px;
}

.gh-journey-mockup-card {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.gh-journey-mockup-badge {
    width: 14px;
    height: 14px;
    margin: 0 auto 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gh-border-gold);
    font-size: 7px;
    font-weight: 700;
    color: var(--gh-gold);
    background: rgba(216, 167, 58, 0.08);
    flex-shrink: 0;
}

.gh-journey-mockup-img {
    line-height: 0;
    margin-bottom: 2px;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gh-journey-mockup-img img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 72px;
    height: auto;
    margin: 0 auto;
    border-radius: 4px;
    border: 1px solid rgba(216, 167, 58, 0.25);
    object-fit: contain;
}

.gh-journey-mockup-card h3 {
    margin: 0 0 2px;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gh-gold);
    flex-shrink: 0;
}

.gh-journey-mockup-card p {
    margin: 0;
    font-size: 7px;
    line-height: 1.25;
    color: var(--gh-text-muted);
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gh-journey-mockup-arrow {
    flex-shrink: 0;
    align-self: center;
    color: var(--gh-gold);
    font-size: 11px;
    opacity: 0.85;
    padding: 0 1px;
}

.gh-mockup-bottom {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px 0 2px;
}

.gh-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px 10px;
    background: linear-gradient(160deg, rgba(18, 24, 36, 0.88) 0%, rgba(8, 11, 18, 0.94) 100%);
    border: 1px solid rgba(216, 167, 58, 0.22);
    border-radius: 10px;
}

.gh-row-item {
    text-align: center;
    padding: 2px 4px;
}

.gh-row-item img {
    display: block;
    margin: 0 auto 4px;
    object-fit: contain;
}

.gh-row--features .gh-row-item img {
    width: 32px;
    height: 32px;
}

.gh-row--stats .gh-row-item img {
    width: 28px;
    height: 28px;
}

.gh-row-item h3 {
    margin: 0 0 2px;
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gh-gold);
}

.gh-row-item p {
    margin: 0;
    font-size: 8px;
    line-height: 1.3;
    color: var(--gh-text-muted);
}

.gh-footer--mockup {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 6px clamp(12px, 2vw, 24px) 8px;
    border-top: 1px solid rgba(216, 167, 58, 0.12);
}

.gh-footer-brand-col {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.gh-footer-brand-col img {
    flex-shrink: 0;
}

.gh-footer-brand-col p {
    margin: 0;
    font-size: 9px;
    line-height: 1.35;
    color: var(--gh-text-muted);
}

.gh-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 14px;
}

.gh-footer-nav a {
    font-family: var(--font-ui, "Rajdhani", sans-serif);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gh-text-muted);
    text-decoration: none;
}

.gh-footer-nav a:hover {
    color: var(--gh-gold);
}

.gh-footer-legal {
    text-align: right;
    font-size: 8px;
    color: var(--gh-text-muted);
    line-height: 1.4;
}

.gh-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 12px;
    margin-bottom: 3px;
}

.gh-footer-legal-links a {
    color: var(--gh-text-muted);
    text-decoration: none;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gh-footer-legal-links a:hover {
    color: var(--gh-gold);
}

@media (min-width: 1024px) {
    .gh-landing--mockup .gh-header {
        padding: 4px clamp(12px, 2vw, 24px);
    }

    .gh-landing--mockup .gh-header-logo img {
        width: 44px;
        height: 44px;
    }

    .gh-landing--mockup .gh-sidebar--desktop {
        position: static;
        top: auto;
    }

    .gh-landing--mockup .gh-header-nav {
        display: flex;
    }

    .gh-landing--mockup .gh-btn-header-login {
        display: inline-flex;
    }

    .gh-landing--mockup .gh-menu-toggle {
        display: none;
    }
}

@media (min-width: 1280px) {
    .gh-landing--mockup .gh-hero-launcher-inner {
        max-width: 52%;
        padding: 12px 18px 14px;
    }

    .gh-landing--mockup .gh-hero-value {
        font-size: 11px;
    }

    .gh-landing--mockup .gh-hero-value img {
        width: 24px;
        height: 24px;
    }

    .gh-journey-mockup-img img {
        max-height: 84px;
    }

    .gh-journey-mockup-card h3 {
        font-size: 9px;
    }

    .gh-journey-mockup-card p {
        font-size: 8px;
    }

    .gh-row-item h3 {
        font-size: 10px;
    }

    .gh-row-item p {
        font-size: 9px;
    }
}

@media (max-width: 1023.98px) {
    .gh-landing-layout:has(.gh-landing--mockup) {
        height: auto;
        min-height: 100dvh;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .gh-landing--mockup {
        max-height: none;
        height: auto;
        min-height: 100dvh;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .gh-mockup-body {
        overflow: visible;
    }

    .gh-mockup-top {
        flex: none;
        min-height: auto;
        overflow: visible;
    }

    .gh-footer--mockup {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gh-footer-brand-col {
        justify-content: center;
    }

    .gh-footer-nav {
        justify-content: center;
    }

    .gh-footer-legal {
        text-align: center;
    }

    .gh-footer-legal-links {
        justify-content: center;
    }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .gh-particle,
    .gh-hero-smoke,
    .gh-battle-line,
    .gh-fade-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gh-btn:hover {
        transform: none;
    }
}
