/*
Theme Name: AEO God Mode Landing
Theme URI: https://aeogodmode.io
Author: Metronyx
Description: Single-page animated wordmark theme for AEO God Mode sister domains. Brand-matched to aeogodmode.io. No comments, no menus, no widgets.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
Text Domain: aeo-god-mode
*/

:root {
    --bg-0:        #0c0e14;
    --bg-1:        #141826;
    --blue-500:    #1b6ff5;
    --blue-400:    #338dff;
    --blue-300:    #58aeff;
    --blue-200:    #8ecbff;
    --gold:        #cba662;
    --text:        #f1f5f9;
    --text-dim:    #5a6478;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--bg-0);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
    overflow: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 25% 25%, rgba(27, 111, 245, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 75%, rgba(51, 141, 255, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(203, 166, 98, 0.05) 0%, transparent 50%),
        var(--bg-0);
    user-select: none;
    cursor: default;
}

.aeo-stage {
    position: relative;
    text-align: center;
}

.aeo-mark {
    font-size: clamp(40px, 10vw, 156px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.95;
    margin: 0;

    background: linear-gradient(
        110deg,
        var(--blue-500) 0%,
        var(--blue-300) 35%,
        var(--blue-200) 50%,
        var(--blue-300) 65%,
        var(--blue-500) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    animation: aeo-sweep 5.0s ease-in-out infinite;
}

@keyframes aeo-sweep {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.aeo-mark .aeo {
    /* Slight emphasis on AEO so the brand reads acronym-first. */
    font-weight: 900;
}

.aeo-mark .gm {
    font-weight: 400;
    letter-spacing: -0.01em;
}

.aeo-cursor {
    display: inline-block;
    width: 0.06em;
    height: 0.85em;
    margin-left: 0.06em;
    background: var(--blue-400);
    vertical-align: text-bottom;
    animation: aeo-blink 1.1s steps(2) infinite;
    box-shadow: 0 0 22px rgba(51, 141, 255, 0.65);
}

@keyframes aeo-blink {
    0%, 49%   { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.aeo-tag {
    margin-top: 22px;
    font-size: 13px;
    letter-spacing: 0.42em;
    color: var(--text-dim);
    text-transform: uppercase;
    opacity: 0;
    animation: aeo-fade-in 0.9s 0.7s ease-out forwards;
}

.aeo-tag .gold {
    color: var(--gold);
    letter-spacing: 0.42em;
}

@keyframes aeo-fade-in {
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .aeo-mark   { animation: none; background-position: 0 0; }
    .aeo-cursor { animation: none; opacity: 1; }
    .aeo-tag    { animation: none; opacity: 1; }
}
