/*
Theme Name: Plexi
Theme URI: https://pleximath.xyz/
Author: Press Rogers
Author URI: https://pressrogers.com/
Description: Neon math frontier built on the Basic theme foundation.
Version: 0.1.0
Template: press-basic
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: plexi
*/

:root {
    color-scheme: dark;
    --basic-bg: radial-gradient(circle at 10% 10%, #1a1631, #05030b 70%);
    --basic-text: #f7f8ff;
    --basic-muted: rgba(247, 248, 255, 0.75);
}

.basic-title {
    color: transparent;
    background: linear-gradient(115deg, #65f5ff 0%, #61a5ff 35%, #bb72ff 80%, #ff77dd 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.plexi-front-page .basic-screen {
    min-height: 100vh;
}

.plexi-hero {
    display: grid;
    gap: clamp(1.4rem, 3vw, 2.6rem);
    text-align: center;
    justify-items: center;
}

.plexi-hero__subtitle {
    margin: 0;
    max-width: min(720px, 88vw);
    font-size: clamp(1rem, 2.1vw, 1.3rem);
    color: rgba(247, 248, 255, 0.82);
    line-height: 1.7;
}

.plexi-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.plexi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    padding: 0.9rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 2.8vw, 0.96rem);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.plexi-button--primary {
    color: #081020;
    background: linear-gradient(120deg, #65f5ff 0%, #61a5ff 40%, #ff77dd 100%);
    box-shadow: 0 16px 45px rgba(97, 165, 255, 0.45);
}

.plexi-button--primary:hover,
.plexi-button--primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(97, 165, 255, 0.58);
}

.plexi-button--ghost {
    color: rgba(247, 248, 255, 0.82);
    background: transparent;
    border: 1px solid rgba(247, 248, 255, 0.32);
}

.plexi-button--ghost:hover,
.plexi-button--ghost:focus-visible {
    color: #ffffff;
    border-color: rgba(247, 248, 255, 0.6);
    transform: translateY(-2px);
}

.plexi-button:focus-visible {
    outline: 2px solid rgba(101, 245, 255, 0.85);
    outline-offset: 4px;
}
