.home-page {
    display: block;
}

section.home .site-main {
    padding: 0;
}

section.home .site-main > .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.site-footer {
    display: none;
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 26px 10px;
    box-shadow: none;
    display: grid;
    grid-template-rows: auto 1fr;
    align-content: stretch;
    gap: 18px;
    min-height: calc(100vh - 72px);
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    pointer-events: none;
}

@supports (height: 100dvh) {
    .home-hero {
        min-height: calc(100dvh - 72px);
    }
}

body[data-theme="light"] .home-hero {
    box-shadow: none;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(600px 240px at 20% 0%, rgba(255, 255, 255, 0.10), transparent 60%),
        radial-gradient(520px 260px at 80% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
    opacity: 0.55;
}

body[data-theme="light"] .home-hero::before {
    background:
        radial-gradient(520px 240px at 20% 0%, rgba(0, 0, 0, 0.06), transparent 60%),
        radial-gradient(520px 260px at 80% 20%, rgba(0, 0, 0, 0.05), transparent 55%);
    opacity: 0.35;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 28px;
    align-items: center;
}

.home-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8px;
}

.home-hero-metrics {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 680px;
}

.home-metric-value {
    font-family: "Rajdhani", "Orbitron", "Poppins", sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.4px;
}

.home-metric-label {
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.62);
}

body[data-theme="light"] .home-metric-label {
    color: rgba(0, 0, 0, 0.58);
}

.home-hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-top {
    width: 100%;
    max-width: 1240px;
    margin: 12px auto 0;
}

.home-hero-bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 0;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    align-self: end;
}

.home-feature-grid {
    gap: 14px;
}

.home-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid rgba(220, 20, 60, 0.55);
    box-shadow: 0 18px 46px rgba(220, 20, 60, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.home-mini-card::before,
.home-mini-card::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(220, 20, 60, 0.8);
    border-style: solid;
    pointer-events: none;
    transition: all 0.3s ease;
}

.home-mini-card::before {
    top: 6px;
    left: 6px;
    border-width: 2px 0 0 2px;
}

.home-mini-card::after {
    bottom: 6px;
    right: 6px;
    border-width: 0 2px 2px 0;
}

.home-feature-grid > .col-4:nth-child(1) .home-mini-card::before,
.home-feature-grid > .col-4:nth-child(1) .home-mini-card::after {
    border-color: rgba(220, 20, 60, 0.8);
}

.home-feature-grid > .col-4:nth-child(2) .home-mini-card::before,
.home-feature-grid > .col-4:nth-child(2) .home-mini-card::after {
    border-color: rgba(56, 189, 248, 0.8);
}

.home-feature-grid > .col-4:nth-child(3) .home-mini-card::before,
.home-feature-grid > .col-4:nth-child(3) .home-mini-card::after {
    border-color: rgba(168, 85, 247, 0.8);
}

.home-mini-card:hover::before,
.home-mini-card:hover::after {
    width: 18px;
    height: 18px;
}

body[data-theme="light"] .home-mini-card {
    border-color: rgba(220, 20, 60, 0.45);
    box-shadow: 0 18px 46px rgba(220, 20, 60, 0.06);
}

.home-mini-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    color: var(--accent);
    font-size: 22px;
    flex: 0 0 auto;
}

.home-mini-icon i {
    display: inline-block;
    transition: transform 450ms cubic-bezier(0.65, 0, 0.076, 1);
    will-change: transform;
}

.home-mini-card:hover .home-mini-icon i {
    transform: rotate(360deg);
}

body[data-theme="light"] .home-mini-icon {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.60);
}

.home-feature-grid > .col-4:nth-child(1) .home-mini-icon {
    color: #dc143c;
}

.home-feature-grid > .col-4:nth-child(2) .home-mini-icon {
    color: #38bdf8;
}

.home-feature-grid > .col-4:nth-child(3) .home-mini-icon {
    color: #a855f7;
}

.home-mini-title {
    font-family: "Barlow", "Oswald", "Poppins", sans-serif;
    font-weight: 900;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
    font-size: 16px;
}

.home-mini-text {
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
    color: var(--muted);
    line-height: 1.4;
    font-size: 14px;
}

.home-mini-action {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
}

.uiverse-learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: 13px;
    font-family: inherit;
    width: 12rem;
    margin-top: 12px;
}

.uiverse-learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.65);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
}

body[data-theme="light"] .uiverse-learn-more .circle {
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.18);
    background: rgba(0, 0, 0, 0.70);
}

.uiverse-learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.uiverse-learn-more .circle .icon.arrow {
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.uiverse-learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.uiverse-learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: rgba(255, 255, 255, 0.60);
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

body[data-theme="light"] .uiverse-learn-more .button-text {
    color: rgba(0, 0, 0, 0.62);
}

.uiverse-learn-more:hover .circle {
    width: 100%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.75);
}

body[data-theme="light"] .uiverse-learn-more:hover .circle {
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.22);
}

.uiverse-learn-more:hover .button-text {
    transform: translate(-1.7rem, 0);
    color: #fff;
}

body[data-theme="light"] .uiverse-learn-more:hover .button-text {
    color: rgba(0, 0, 0, 0.90);
}

.uiverse-learn-more:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(8.7rem, 0);
}

.uiverse-learn-more:active .circle .icon.arrow {
    transform: translate(9.5rem, 0);
    transition: all 0.3s;
}

.uiverse-learn-more:active .circle {
    transform: scale(0.96);
    transition: all 0.3s;
}

.home-badge-card {
    width: 100%;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body[data-theme="light"] .home-badge-card {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.home-badge-ring {
    width: min(340px, 92%);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 234, 0.25);
    background: rgba(0, 0, 0, 0.24);
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    justify-items: center;
    padding: 28px;
    position: relative;
    isolation: isolate;
}

.home-badge-ring::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    background: conic-gradient(
        #ff0000,
        #ff7f00,
        #ffff00,
        #00ff00,
        #00ffff,
        #0000ff,
        #8b00ff,
        #ff0000
    );
    animation: homeRainbowSpin 3.2s linear infinite;
    z-index: 0;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 5px));
    opacity: 0.9;
    pointer-events: none;
}

@keyframes homeRainbowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body[data-theme="light"] .home-badge-ring {
    background: rgba(255, 255, 255, 0.70);
    border-color: rgba(0, 70, 255, 0.18);
}

.home-badge-top {
    font-family: "Barlow", "Oswald", "Poppins", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 800;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}

body[data-theme="light"] .home-badge-top {
    color: rgba(0, 0, 0, 0.65);
}

.home-badge-logo {
    width: 128px;
    height: 128px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
}

body[data-theme="light"] .home-badge-logo {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.04);
}

.home-badge-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 16px;
}

img.no-drag {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    cursor: default;
}

.no-interact {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    cursor: default;
}

.home-badge-bottom {
    text-align: center;
    font-family: "Barlow", "Oswald", "Poppins", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    font-size: 14px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}

body[data-theme="light"] .home-badge-bottom {
    color: rgba(0, 0, 0, 0.65);
}

.home-hero-photo-wrap {
    position: relative;
    width: min(420px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

body[data-theme="light"] .home-hero-photo-wrap {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.home-hero-photo-wrap::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.35), transparent 60%);
    filter: blur(10px);
    pointer-events: none;
}

.home-hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-title {
    margin: 0 0 8px;
    font-family: "Barlow", "Oswald", "Poppins", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    font-weight: 900;
    letter-spacing: -0.2px;
    text-transform: none;
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.05;
    text-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}

.home-hero-subtitle {
    margin: 0;
    max-width: 70ch;
    color: var(--muted);
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

.home-hero-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.home-hero-actions .btn {
    padding: 12px 16px;
    font-size: 15px;
}

.btn-fancy {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 14px;
    border: 1px solid rgba(212, 237, 249, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    overflow: hidden;
    outline-offset: 4px;
    transition: transform 220ms ease, filter 220ms ease;
}

body[data-theme="light"] .btn-fancy {
    border-color: rgba(0, 0, 0, 0.18);
    background: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.90);
}

.btn-fancy:focus {
    outline: 2px solid rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .btn-fancy:focus {
    outline: 2px solid rgba(0, 0, 0, 0.85);
}

.btn-fancy:hover {
    transform: translateY(-1px);
}

.btn-fancy__text {
    position: relative;
    z-index: 20;
}

.btn-fancy__icon {
    position: relative;
    z-index: 20;
    font-size: 18px;
    line-height: 1;
}

.btn-fancy__shine {
    position: absolute;
    left: -75%;
    top: 0;
    height: 100%;
    width: 50%;
    background: rgba(255, 255, 255, 0.20);
    transform: rotate(12deg);
    z-index: 10;
    filter: blur(14px);
    transition: left 1000ms ease-in-out;
}

.btn-fancy:hover .btn-fancy__shine {
    left: 125%;
}

.btn-fancy__corner {
    width: 50%;
    position: absolute;
    z-index: 15;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.30));
    transition: height 300ms ease;
    border-color: rgba(212, 237, 249, 0.75);
}

body[data-theme="light"] .btn-fancy__corner {
    border-color: rgba(0, 0, 0, 0.35);
}

.btn-fancy__tl {
    left: 0;
    top: 0;
    height: 20%;
    border-left: 2px solid;
    border-top: 2px solid;
    border-top-left-radius: 14px;
}

.btn-fancy__tr {
    right: 0;
    top: 0;
    height: 60%;
    border-right: 2px solid;
    border-top: 2px solid;
    border-top-right-radius: 14px;
}

.btn-fancy__bl {
    left: 0;
    bottom: 0;
    height: 60%;
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-bottom-left-radius: 14px;
}

.btn-fancy__br {
    right: 0;
    bottom: 0;
    height: 20%;
    border-right: 2px solid;
    border-bottom: 2px solid;
    border-bottom-right-radius: 14px;
}

.btn-fancy:hover .btn-fancy__tr,
.btn-fancy:hover .btn-fancy__bl {
    height: 90%;
}

.home-hero-aside {
    height: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

body[data-theme="light"] .home-hero-aside {
    border-color: rgba(0, 0, 0, 0.14);
    background: rgba(255, 255, 255, 0.60);
}

.home-hero-aside-title {
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.home-hero-aside-text {
    color: var(--muted);
    line-height: 1.4;
}

.home-features {
    margin-top: 0;
}

.home-feature {
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 55%);
    opacity: 0.8;
}

body[data-theme="light"] .home-feature::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), transparent 55%);
    opacity: 0.55;
}

.home-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

body[data-theme="light"] .home-feature:hover {
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.home-feature-title {
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.home-feature-text {
    color: var(--muted);
    line-height: 1.45;
}

body:not(.is-page-loaded) .home-hero-content {
    opacity: 0;
    transform: translateX(-28px);
}

body:not(.is-page-loaded) .home-hero-media {
    opacity: 0;
    transform: translateX(36px);
}

body:not(.is-page-loaded) .home-feature-grid .home-mini-card {
    opacity: 0;
    transform: translateY(34px);
}

body.is-page-loaded .home-hero-content,
body.is-page-loaded .home-hero-media,
body.is-page-loaded .home-feature-grid .home-mini-card {
    opacity: 1;
    transform: none;
    transition: opacity 2s ease, transform 2s ease;
    will-change: opacity, transform;
}

body.is-page-loaded .home-hero-content {
    transition-delay: 0.05s;
}

body.is-page-loaded .home-hero-media {
    transition-delay: 0.15s;
}

body.is-page-loaded .home-feature-grid > .col-4:nth-child(1) .home-mini-card {
    transition-delay: 0.35s;
}

body.is-page-loaded .home-feature-grid > .col-4:nth-child(2) .home-mini-card {
    transition-delay: 0.55s;
}

body.is-page-loaded .home-feature-grid > .col-4:nth-child(3) .home-mini-card {
    transition-delay: 0.75s;
}

@media (prefers-reduced-motion: reduce) {
    body:not(.is-page-loaded) .home-hero-content,
    body:not(.is-page-loaded) .home-hero-media,
    body:not(.is-page-loaded) .home-feature-grid .home-mini-card {
        opacity: 1;
        transform: none;
    }

    body.is-page-loaded .home-hero-content,
    body.is-page-loaded .home-hero-media,
    body.is-page-loaded .home-feature-grid .home-mini-card {
        transition: none;
    }
}

@media (max-width: 860px) {
    .home-hero-inner {
        grid-template-columns: 1fr;
    }

    .home-hero-media {
        grid-row: 1;
    }

    .home-hero-content {
        grid-row: 2;
        text-align: center;
        align-items: center;
        padding-left: 0;
    }

    .home-badge-ring {
        width: min(300px, 86vw);
        padding: 22px;
    }

    .home-hero-top,
    .home-hero-bottom {
        max-width: 100%;
    }

    .home-hero-top {
        margin-top: 8px;
    }

    .home-hero {
        padding: 18px;
    }

    /* Font sizes for different mobile breakpoints */
    .home-hero-title {
        font-size: clamp(22px, 5.5vw, 28px);
        line-height: 1.1;
        text-wrap: balance;
        hyphens: auto;
    }

    .home-hero-subtitle {
        font-size: clamp(12px, 3.5vw, 14px);
        line-height: 1.5;
        max-width: 100%;
        text-wrap: balance;
    }

    .home-hero-actions {
        justify-content: center;
    }

    .home-hero-actions .btn-fancy {
        width: 100%;
        max-width: 340px;
        min-height: 52px;
        justify-content: center;
    }

    .home-mini-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .home-mini-card > div:nth-child(2) {
        width: 100%;
    }

    .home-mini-title {
        font-size: clamp(14px, 4vw, 16px);
    }

    .home-mini-text {
        font-size: clamp(11px, 3vw, 13px);
    }

    .uiverse-learn-more {
        width: 100%;
        max-width: 14rem;
    }

    .home-hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin-top: 14px;
        max-width: 100%;
    }

    .home-metric {
        text-align: center;
    }

    .home-metric-value {
        font-size: clamp(16px, 4vw, 20px);
    }

    .home-metric-label {
        font-size: clamp(9px, 2.5vw, 11px);
    }

    .home-hero {
        min-height: calc(100vh - 58px);
    }

    @supports (height: 100dvh) {
        .home-hero {
            min-height: calc(100dvh - 58px);
        }
    }

    .home-hero-photo-wrap {
        width: min(320px, 100%);
        border-radius: 18px;
    }
}

@media (max-width: 520px) {
    .home-hero {
        padding: 16px;
    }
}

/* Removed redundant layout styles already in layout.css */
