/* =========================================
   GETYOUTIFY GLOBAL STYLES
   Add site-wide typography, buttons, spacing,
   colors, and reusable utility classes here.
========================================= */

/* =====================================================
   GETYOUTIFY GLOBAL DESIGN SYSTEM
   Lightweight, responsive and performance-focused
===================================================== */

.site-info {
	display: none !important
}

:root {
    --gy-bg: #070911;
    --gy-bg-soft: #0d101b;
    --gy-card: #111522;
    --gy-card-light: #171c2c;
    --gy-primary: #8b5cf6;
    --gy-primary-dark: #6d3ee8;
    --gy-secondary: #22d3ee;
    --gy-accent: #a3e635;
    --gy-text: #f8fafc;
    --gy-text-soft: #b4bbca;
    --gy-text-muted: #80899b;
    --gy-border: rgba(255, 255, 255, 0.09);
    --gy-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    --gy-radius-sm: 12px;
    --gy-radius-md: 20px;
    --gy-radius-lg: 30px;
    --gy-container: 1180px;
}

/* Remove default GeneratePress page spacing */
.home .site-content,
.home .content-area,
.home .site-main,
.home .inside-article,
.home .entry-content {
    margin: 0;
    padding: 0;
}

.home .grid-container {
    max-width: 100%;
}

.home .entry-content > * {
    margin-top: 0;
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--gy-bg);
}

.gy-section {
    position: relative;
    width: 100%;
    padding: 96px 24px;
}

.gy-container {
    width: min(100%, var(--gy-container));
    margin-inline: auto;
}

.gy-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 13px;
    border: 1px solid rgba(139, 92, 246, 0.26);
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gy-section-label::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gy-accent);
    box-shadow: 0 0 12px rgba(163, 230, 53, 0.65);
    content: "";
}

.gy-section-title {
    margin: 0;
    color: var(--gy-text);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.gy-section-description {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--gy-text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.gy-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.gy-button:hover {
    transform: translateY(-2px);
}

.gy-button-primary {
    background: linear-gradient(
        135deg,
        var(--gy-primary),
        var(--gy-primary-dark)
    );
    box-shadow: 0 14px 34px rgba(109, 62, 232, 0.28);
    color: #fff;
}

.gy-button-primary:hover {
    color: #fff;
}

.gy-button-secondary {
    border-color: var(--gy-border);
    background: rgba(255, 255, 255, 0.055);
    color: var(--gy-text);
}

.gy-button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.085);
    color: #fff;
}

/* Accessible keyboard focus */
.gy-button:focus-visible,
.gy-hero-proof-item:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.65);
    outline-offset: 4px;
}

/* Tablet */
@media (max-width: 900px) {
    .gy-section {
        padding: 78px 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gy-section {
        padding: 64px 18px;
    }

    .gy-section-title {
        font-size: clamp(31px, 10vw, 42px);
    }

    .gy-section-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .gy-button {
        width: 100%;
    }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

