*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    font-family: "Inter", "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.15), transparent 50%), radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.15), transparent 45%), linear-gradient(135deg, #0f0f23 0%, #141430 100%);
    background-attachment: fixed;
    color: #f8fafc;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400
}

img {
    max-width: 100%;
    display: block;
    height: auto
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit
}

button {
    background: none;
    border: none;
    cursor: pointer
}

ul,
ol {
    list-style: none
}

a {
    color: inherit;
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", "Inter", "Noto Sans TC", system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.2
}

p {
    color: #cbd5e1
}

::-moz-selection {
    background: rgba(99, 102, 241, .3)
}

::selection {
    background: rgba(99, 102, 241, .3)
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

body {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7
}

a {
    color: #f8fafc;
    transition: color .2s ease
}

a:hover,
a:focus-visible {
    color: #06b6d4
}

a:focus-visible {
    outline: 2px solid rgba(6, 182, 212, .65);
    outline-offset: 3px
}

h1 {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 700
}

h2 {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem)
}

h3 {
    font-size: clamp(1.4rem, 2.6vw, 2rem)
}

h4 {
    font-size: clamp(1.15rem, 2vw, 1.5rem)
}

.lead {
    font-size: 1.125rem;
    color: #cbd5e1
}

.text-gradient {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    color: rgba(0, 0, 0, 0)
}

.text-muted {
    color: #cbd5e1
}

.text-subtle {
    color: #94a3b8
}

html {
    scroll-behavior: smooth
}

main {
    position: relative;
    z-index: 1
}

.bg-secondary {
    background: #151530
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 35, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity .35s ease
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, .25);
    border-top-color: #6366f1;
    animation: spin 1s linear infinite
}

.scroll-progress-container,
.hero-scroll-indicator {
    display: none
}

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(31, 31, 69, .95);
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsla(0, 0%, 100%, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transition: transform .2s ease, opacity .2s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 50
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.back-to-top:hover {
    transform: translateY(-3px)
}

.animate-on-scroll {
    opacity: 0
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media(max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.section {
    padding: 5rem 0
}

@media(max-width: 768px) {
    .section {
        padding: 3.5rem 0
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-header .lead {
    margin-top: .75rem
}

.content-center {
    max-width: 900px;
    margin: 0 auto
}

.text-center {
    text-align: center
}

.grid-auto {
    display: grid;
    gap: 1.5rem
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem
}

@media(max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr
    }
}

.three-column {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem
}

@media(max-width: 1024px) {
    .three-column {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width: 768px) {
    .three-column {
        grid-template-columns: 1fr
    }
}

.scroll-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden
}

.scroll-shapes .shape-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .4;
    z-index: -1;
    animation: float 20s infinite ease-in-out
}

.scroll-shapes .shape-blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1, #8b5cf6)
}

.scroll-shapes .shape-blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #06b6d4, #10b981);
    animation-delay: -5s
}

.scroll-shapes .shape-diamond-abstract {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .03);
    transform: rotate(45deg);
    z-index: -1;
    animation: float-rotate 30s infinite linear
}

.scroll-shapes .shape-diamond-abstract::after {
    content: "";
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(255, 255, 255, .05)
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, 50px)
    }
}

@keyframes float-rotate {
    0% {
        transform: rotate(45deg) translate(0, 0)
    }

    50% {
        transform: rotate(50deg) translate(-20px, 20px)
    }

    100% {
        transform: rotate(45deg) translate(0, 0)
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(15, 15, 35, .95);
    border-bottom: 1px solid rgba(47, 51, 80, .6);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45)
}

.header-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media(max-width: 768px) {
    .header-container {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1.5rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: #f8fafc
}

.logo img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: .95rem
}

@media(max-width: 768px) {
    .nav {
        display: none
    }
}

.nav-link {
    color: #cbd5e1;
    position: relative;
    transition: color .2s ease;
    padding-bottom: .25rem
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #06b6d4, #6366f1);
    transition: width .2s ease
}

.nav-link:hover,
.nav-link.active {
    color: #f8fafc
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid hsla(0, 0%, 100%, .08);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(31, 31, 69, .8)
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #f8fafc
}

@media(max-width: 768px) {
    .mobile-menu-toggle {
        display: flex
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 15, 35, .96);
    border-bottom: 1px solid #2f3350
}

.nav-mobile.active {
    display: flex
}

.nav-mobile .nav-link {
    width: 100%;
    text-align: center;
    padding: .75rem;
    border-radius: .65rem;
    background: rgba(31, 31, 69, .6)
}

@media(max-width: 768px) {
    .nav-mobile {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 80
    }
}

.footer {
    background: rgba(0, 0, 0, 0);
    padding: 4rem 0 2.5rem;
    border-top: none
}

.footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media(max-width: 768px) {
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem
}

@media(max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem
}

.footer-logo .logo-text {
    font-weight: 600
}

.footer-description {
    color: #cbd5e1
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.company-info .info-label {
    color: #94a3b8
}

.service-status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, .12);
    border: 1px solid rgba(16, 185, 129, .25)
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981
}

.status-link {
    color: #06b6d4;
    font-size: .85rem
}

.footer-title {
    font-size: 1.05rem;
    margin-bottom: .75rem
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.footer-nav a {
    color: #cbd5e1;
    font-size: .95rem
}

.footer-nav a:hover {
    color: #f8fafc
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.contact-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #cbd5e1
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(47, 51, 80, .4);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.social-links {
    display: flex;
    gap: .75rem
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(47, 51, 80, .6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease
}

.social-link:hover {
    background: rgba(47, 51, 80, .6)
}

.footer-bottom {
    border-top: 1px solid #2f3350;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: #94a3b8
}

.footer-legal {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.footer-legal a {
    color: inherit;
    font-size: .9rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 999px;
    padding: .75rem 1.5rem;
    font-weight: 500;
    letter-spacing: .01em;
    border: none;
    color: #f8fafc;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transition: transform .2s ease, box-shadow .2s ease;
    min-height: 48px
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(99, 102, 241, .35)
}

.btn:focus-visible {
    outline: 2px solid rgba(6, 182, 212, .65);
    outline-offset: 3px
}

.btn-secondary {
    background: #1f1f45;
    border: 1px solid rgba(47, 51, 80, .7)
}

.btn-outline {
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(248, 250, 252, .35);
    color: #f8fafc
}

.btn-lg {
    padding: .9rem 2rem
}

.btn-xl {
    padding: 1rem 2.6rem;
    font-size: 1.05rem
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .85rem;
    padding: .35rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 51, 80, .5);
    background: rgba(47, 51, 80, .3)
}

.hero-badge {
    margin-bottom: 1rem;
    background: rgba(99, 102, 241, .15);
    border-color: rgba(99, 102, 241, .4)
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid rgba(47, 51, 80, .6);
    border-radius: 999px;
    padding: .3rem .85rem;
    font-size: .85rem;
    color: #cbd5e1
}

.service-card,
.feature-card,
.contact-card,
.value-card,
.advantage-item,
.contact-detail-card,
.company-info-card,
.company-stats-card,
.company-mission-card {
    background: rgba(28, 28, 61, .9);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    border-radius: 1rem;
    border: 1px solid hsla(0, 0%, 100%, .08);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-image: linear-gradient(145deg, rgba(47, 51, 80, 0.18), rgba(47, 51, 80, 0.05))
}

.service-card,
.feature-card {
    height: 100%;
    transition: transform .2s ease, border-color .2s ease
}

.service-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, .4)
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: .65rem;
    background: rgba(99, 102, 241, .15);
    display: flex;
    align-items: center;
    justify-content: center
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(203, 213, 225, 0.85);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-icon img {
    width: 36px;
    height: 36px;
    -o-object-fit: contain;
    object-fit: contain
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: auto
}

.feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #cbd5e1
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(99, 102, 241, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6366f1
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    background: rgba(99, 102, 241, .12)
}

.contact-card {
    align-items: flex-start;
    gap: .6rem
}

.contact-card:hover {
    border-color: rgba(6, 182, 212, .45)
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(99, 102, 241, .15);
    display: flex;
    align-items: center;
    justify-content: center
}

.contact-card-icon img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.contact-card-link {
    color: #f8fafc;
    font-weight: 500
}

.value-card {
    gap: .5rem
}

.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(99, 102, 241, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6366f1
}

.advantage-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: center
}

@media(max-width: 768px) {
    .advantage-item {
        grid-template-columns: 1fr
    }
}

.advantage-number {
    font-size: 2rem;
    font-weight: 600;
    color: #94a3b8
}

.contact-detail-card {
    gap: .75rem
}

.detail-title {
    font-weight: 600
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.time-item,
.company-item,
.guarantee-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #cbd5e1
}

.time-item.emergency {
    color: #f59e0b
}

.guarantee-icon {
    color: #06b6d4
}

.info-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    color: #cbd5e1
}

.info-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(47, 51, 80, .5);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.info-content {
    display: flex;
    flex-direction: column
}

.info-label {
    font-size: .85rem;
    text-transform: uppercase;
    color: #94a3b8
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center
}

@media(max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr
    }
}

.hero-stats .stat-item {
    opacity: 0
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(47, 51, 80, .6);
    background: rgba(31, 31, 69, .65)
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: .35rem;
    background: linear-gradient(135deg, #06b6d4, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    color: rgba(0, 0, 0, 0)
}

.stat-label {
    color: #cbd5e1;
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: .08em
}

.stat-unit {
    display: block;
    color: #8b5cf6
}

.company-stats-card .stats-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem
}

@media(max-width: 480px) {
    .company-stats-card .stats-list {
        grid-template-columns: 1fr
    }
}

.company-mission-card .mission-list {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.company-mission-card .mission-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #cbd5e1
}

.company-mission-card .mission-icon {
    color: #06b6d4;
    display: inline-flex
}

.minecraft-block-container {
    position: fixed;
    top: 50%;
    right: 5%;
    width: 80px;
    height: 80px;
    perspective: 1000px;
    z-index: 9999;
    pointer-events: none;
    transform: translateY(-50%);
    display: none
}

@media(min-width: 1024px) {
    .minecraft-block-container {
        display: block
    }
}

.minecraft-block {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-30deg) rotateY(-45deg);
    will-change: transform
}

.minecraft-block .face {
    position: absolute;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    image-rendering: pixelated
}

.minecraft-block .face::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJyZ2JhKDAsMCwwLDAuMSkiLz4KPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0icmdiYSgwLDAsMCwwLjA1KSIvPgo8L3N2Zz4=");
    background-size: 8px 8px;
    opacity: .4;
    pointer-events: none;
    z-index: 1
}

.minecraft-block .face.top {
    background-color: #5ba836;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px
}

.minecraft-block .face.bottom {
    background-color: #79553a;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px
}

.minecraft-block .face.side {
    background-color: #79553a;
    background-image: linear-gradient(to bottom, #5BA836 0%, #5BA836 25%, transparent 25%, transparent 100%), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1)), linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1));
    background-size: 100% 100%, 20px 20px, 20px 20px;
    background-position: 0 0, 0 0, 10px 10px
}

.minecraft-block .face.side::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 4px;
    background-image: linear-gradient(to bottom, #5BA836 50%, transparent 50%);
    background-size: 10px 4px;
    background-repeat: repeat-x;
    z-index: 2
}

.minecraft-block .face.front {
    transform: rotateY(0deg) translateZ(40px)
}

.minecraft-block .face.back {
    transform: rotateY(180deg) translateZ(40px)
}

.minecraft-block .face.right {
    transform: rotateY(90deg) translateZ(40px)
}

.minecraft-block .face.left {
    transform: rotateY(-90deg) translateZ(40px)
}

.minecraft-block .face.top {
    transform: rotateX(90deg) translateZ(40px)
}

.minecraft-block .face.bottom {
    transform: rotateX(-90deg) translateZ(40px)
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
    background: rgba(0, 0, 0, 0)
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('/images/main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.particle {
    position: absolute;
    top: -10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .9);
    box-shadow: 0 0 6px hsla(0, 0%, 100%, .8);
    will-change: transform, opacity;
    animation-name: snow-fall;
    animation-timing-function: linear;
    animation-iteration-count: 1
}

@keyframes snow-fall {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    100% {
        transform: translate3d(0, 110vh, 0);
        opacity: 0
    }
}



.hero .container {
    position: relative;
    z-index: 2
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center
}

.hero-title {
    margin-bottom: 1rem;
    opacity: 0
}

.typing-text {
    font-weight: 600;
    color: #f8fafc;
    font-size: clamp(1.5rem, 3vw, 2rem)
}

.hero-description {
    margin-bottom: 2rem;
    opacity: 0
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
    opacity: 0
}

.hero-trust {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
    color: #94a3b8
}

.interactive-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    opacity: .3;
    pointer-events: none
}

.interactive-bg .dot {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 10px;
    border-radius: 50%;
    background-color: #6366f1;
    transform: scale(0.2);
    opacity: .5;
    transition: background-color .3s ease
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem
}

@media(max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem
}

@media(max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr
    }
}

.feature-card {
    background: rgba(30, 30, 70, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 70, 0.6);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #8b5cf6;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-section {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0)
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
    pointer-events: none
}

.cta-section::before {
    top: -60px;
    left: 10%;
    background: rgba(99, 102, 241, .7)
}

.cta-section::after {
    bottom: -80px;
    right: 8%;
    background: rgba(6, 182, 212, .7)
}

.cta-content {
    background: rgba(28, 28, 61, .9);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    border-radius: 1rem;
    position: relative;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(248, 250, 252, .15);
    background: rgba(31, 31, 69, .85);
    box-shadow: 0 35px 65px rgba(0, 0, 0, .45);
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    gap: 1.25rem;
    overflow: hidden
}

.cta-content::before {
    content: "";
    position: absolute;
    inset: .75rem;
    border-radius: inherit;
    background: rgba(248, 250, 252, .02);
    border: 1px solid rgba(248, 250, 252, .1);
    pointer-events: none
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem)
}

.cta-content .lead {
    color: #cbd5e1
}

.cta-actions {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem
}

.cta-actions .btn {
    min-width: 190px;
    box-shadow: 0 15px 30px rgba(99, 102, 241, .35)
}

.cta-actions .btn-outline {
    border-color: rgba(248, 250, 252, .4);
    color: #f8fafc
}

.about-section {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    border: none;
    padding: 3rem 0
}

@media(max-width: 768px) {
    .about-section {
        padding: 2rem 0
    }
}

.about-section::after {
    content: "";
    position: absolute;
    inset: 10% 20%;
    border-radius: 1.5rem;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    filter: blur(80px);
    pointer-events: none
}

.about-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    z-index: 1
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

@media(max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-hero__text {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-hero__text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-hero__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #06b6d4;
}

.about-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #06b6d4, #6366f1);
}

.about-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .5rem;
}

.about-pillars span {
    padding: .35rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 51, 80, .5);
    background: rgba(47, 51, 80, .3);
    font-size: .9rem;
    color: #cbd5e1;
}

.about-hero__card {
    background: rgba(30, 30, 70, 0.4);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-hero__card h4 {
    font-size: 1.2rem;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem
}

@media(max-width: 480px) {
    .about-metrics {
        grid-template-columns: 1fr
    }
}

.metric {
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(47, 51, 80, .25);
    border: 1px solid rgba(47, 51, 80, .4);
    text-align: center
}

.metric .metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    color: rgba(0, 0, 0, 0)
}

.metric .metric-label {
    font-size: .9rem;
    color: #cbd5e1;
    margin-top: .25rem
}

.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, .2);
    color: #cbd5e1;
    font-size: .9rem
}

.about-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media(max-width: 768px) {
    .about-panels {
        grid-template-columns: 1fr;
    }
}

.about-panel {
    background: rgba(30, 30, 70, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-panel:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 70, 0.5);
    border-color: rgba(99, 102, 241, 0.25);
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
}

.panel-item {
    display: flex;
    gap: .85rem;
    padding: .75rem;
    border-radius: 1rem;
    border: 1px solid rgba(47, 51, 80, .3);
    background: rgba(47, 51, 80, .2)
}

.panel-item i {
    color: #06b6d4
}

.panel-item h4 {
    font-size: 1.05rem;
    margin-bottom: .25rem
}

.panel-item p {
    color: #cbd5e1
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.company-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.company-list li span {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-list li strong {
    font-size: 1.1rem;
    color: #f8fafc;
    text-align: right;
}

.differentiators-list {
    counter-reset: diff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.differentiators-list li {
    position: relative;
    padding-left: 3rem;
}

.differentiators-list li::before {
    counter-increment: diff;
    content: counter(diff, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.6);
    line-height: 1;
}

.differentiators-list li strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #f8fafc;
    font-size: 1.1rem;
}

.differentiators-list li p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.about-cta {
    margin-top: 4rem;
}

.about-cta .cta-content {
    background: rgba(30, 30, 70, 0.4);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.about-cta .cta-title {
    font-size: 2rem;
    color: #f8fafc;
    margin: 0;
}

.about-cta .cta-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.about-cta .cta-buttons .btn {
    min-width: 160px;
}

.contact-section {
    position: relative;
    background: rgba(0, 0, 0, 0);
    border: none;
    overflow: hidden
}

.contact-section::before,
.contact-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    pointer-events: none
}

.contact-section::before {
    top: -150px;
    right: 5%;
    width: 360px;
    height: 360px;
    background: rgba(99, 102, 241, .35)
}

.contact-section::after {
    bottom: -160px;
    left: 8%;
    width: 420px;
    height: 420px;
    background: rgba(6, 182, 212, .3)
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem
}

@media(max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.contact-panel {
    background: rgba(21, 21, 48, .65);
    border: 1px solid rgba(47, 51, 80, .35);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, .35)
}

.contact-panel-primary {
    grid-column: span 2
}

@media(max-width: 1024px) {
    .contact-panel-primary {
        grid-column: span 2
    }
}

@media(max-width: 768px) {
    .contact-panel-primary {
        grid-column: span 1
    }
}

.contact-panel-primary h3 {
    font-size: 1.75rem
}

.contact-panel-primary p {
    color: #cbd5e1
}

.panel-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #06b6d4
}

.panel-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #06b6d4, #6366f1)
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: .85rem
}

.contact-method {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(47, 51, 80, .35);
    background: rgba(47, 51, 80, .2);
    color: #f8fafc;
    transition: border-color .2s ease, transform .2s ease
}

.contact-method i,
.contact-method img {
    width: 24px;
    height: 24px;
    color: #6366f1
}

.contact-method strong {
    display: block;
    font-size: 1rem
}

.contact-method span {
    color: #cbd5e1;
    font-size: .9rem
}

.contact-method:hover {
    border-color: rgba(99, 102, 241, .6);
    transform: translateX(4px)
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .25rem
}

.contact-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 51, 80, .4);
    background: rgba(47, 51, 80, .2);
    font-size: .9rem;
    color: #cbd5e1
}

.contact-panel-details {
    gap: 1.25rem
}

.contact-panel-details h4 {
    font-size: 1.05rem
}

.detail-block {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(47, 51, 80, .3)
}

.detail-block:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.detail-block ul {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.detail-block li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.detail-block li span {
    font-size: .85rem;
    letter-spacing: .05em;
    color: #94a3b8;
    text-transform: uppercase
}

.detail-block li strong {
    font-size: 1rem;
    margin-left: auto;
    color: #f8fafc;
}

.detail-block i,
.detail-block svg {
    color: #6366f1;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.quality-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quality-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quality-list li span {
    text-transform: none;
    font-size: 1rem;
    color: #cbd5e1;
    letter-spacing: normal;
}

.detail-links {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem
}

.detail-links a {
    padding: .35rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 51, 80, .5);
    color: #f8fafc;
    font-size: .9rem
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .85rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, .3);
    color: #94a3b8;
    font-size: .85rem
}

.contact-panel-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left
}

.contact-panel-cta h3 {
    font-size: 1.9rem
}

.contact-panel-cta p {
    color: #cbd5e1
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.cta-benefits i {
    color: #06b6d4;
    margin-top: .15rem
}

.cta-benefits li {
    display: flex;
    gap: .75rem;
    padding: .85rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(47, 51, 80, .35);
    background: rgba(47, 51, 80, .18)
}

.cta-benefits li strong {
    display: block;
    font-size: 1rem
}

.cta-benefits li span {
    color: #cbd5e1;
    font-size: .9rem
}

.cta-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media(max-width: 1024px) {
    .cta-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

@media(max-width: 1024px) {
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start
    }
}

.cta-metrics {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: #cbd5e1
}

@media(max-width: 1024px) {
    .cta-metrics {
        flex-direction: row;
        gap: 1rem
    }
}

.cta-metrics div {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 140px;
    padding: .75rem;
    border-radius: 1rem;
    border: 1px solid rgba(47, 51, 80, .35);
    background: rgba(47, 51, 80, .15)
}

.cta-metrics strong {
    color: #f8fafc;
    font-size: 1.15rem
}

.section-title {
    margin-bottom: .5rem
}

.section-subtitle {
    color: #cbd5e1
}

.bg-card {
    background: #1b1b3a
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35)
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

code {
    background: rgba(99, 102, 241, .15);
    color: #a5b4fc;
    padding: .2rem .4rem;
    border-radius: .3rem;
    font-family: monospace;
    font-size: .9em
}

.feature-spotlights {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 4rem
}

@media (max-width: 768px) {
    .feature-spotlights {
        gap: 4rem;
        margin-top: 2rem
    }
}

.spotlight-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem
}

.spotlight-row.reversed {
    grid-template-columns: 1.2fr 1fr
}

.spotlight-row.reversed .spotlight-content {
    order: 2;
    padding-left: 2rem
}

.spotlight-row.reversed .spotlight-visual {
    order: 1
}

.spotlight-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start
}

/* Responsive Overrides */
@media(max-width:1024px) {

    .spotlight-row,
    .spotlight-row.reversed {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

    /* Force visual to be on top for ALL rows on mobile/tablet */
    .spotlight-row .spotlight-visual,
    .spotlight-row.reversed .spotlight-visual {
        order: -1
    }

    .spotlight-row .spotlight-content,
    .spotlight-row.reversed .spotlight-content {
        order: 2;
        padding-left: 0;
        align-items: center
    }
}

@media(max-width: 768px) {

    .spotlight-row,
    .spotlight-row.reversed {
        gap: 2.5rem
    }
}

.spotlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    background: rgba(99, 102, 241, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    margin-bottom: .5rem
}

.spotlight-content h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #f8fafc, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.spotlight-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.7
}

.spotlight-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-top: 1rem
}

.spotlight-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #cbd5e1;
    font-weight: 500
}

.spotlight-list li i {
    width: 20px;
    height: 20px;
    color: #06b6d4
}

.spotlight-visual {
    position: relative;
    perspective: 1000px
}

.browser-window {
    background: #1e1e2f;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    z-index: 2;
    transition: transform .5s ease
}

.spotlight-row:hover .browser-window {
    transform: translateY(-10px) rotateX(2deg)
}

.window-header {
    background: #2a2a40;
    padding: .8rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%
}

.window-dot.red {
    background: #ff5f56
}

.window-dot.yellow {
    background: #ffbd2e
}

.window-dot.green {
    background: #27c93f
}

.window-title {
    margin-left: auto;
    margin-right: auto;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    font-family: monospace
}

.browser-window img {
    width: 100%;
    height: auto;
    display: block
}

.spotlight-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(99, 102, 241, .4) 0, transparent 70%);
    opacity: .5;
    filter: blur(40px);
    z-index: 1;
    transition: opacity .5s ease
}

.spotlight-row:hover .spotlight-glow {
    opacity: .8
}

.spotlight-glow.purple {
    background: radial-gradient(circle, rgba(139, 92, 246, .4) 0, transparent 70%)
}

.spotlight-glow.cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, .4) 0, transparent 70%)
}

.spotlight-glow.green {
    background: radial-gradient(circle, rgba(16, 185, 129, .4) 0, transparent 70%)
}

.overflow-hidden {
    overflow: hidden
}

#floating-block-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    perspective: 800px;
    z-index: 999;
    cursor: grab;
    user-select: none;
    touch-action: none;
    animation: float-block 6s ease-in-out infinite;
}

#floating-block {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(45deg);
    transition: transform 0.1s ease-out;
}

.face {
    position: absolute;
    width: 60px;
    height: 60px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    image-rendering: pixelated;
}

.face.front,
.face.back,
.face.right,
.face.left,
.face.top,
.face.bottom {
    background-color: #64e0e0;
    background-image: url('/images/textures/diamond_block.png');
    background-size: 100% 100%;
    image-rendering: pixelated;
    border: none;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.face::before,
.face::after {
    display: none;
}

.face.front {
    transform: rotateY(0deg) translateZ(30px);
}

.face.back {
    transform: rotateY(180deg) translateZ(30px);
}

.face.right {
    transform: rotateY(90deg) translateZ(30px);
}

.face.left {
    transform: rotateY(-90deg) translateZ(30px);
}

.face.top {
    transform: rotateX(90deg) translateZ(30px);
}

.face.bottom {
    transform: rotateX(-90deg) translateZ(30px);
}

@keyframes float-block {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0;
}

.domain-tags code {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.9em;
    color: #a5b4fc;
    transition: all 0.3s ease;
}

.domain-tags code:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.pricing-section {
    position: relative;
    z-index: 2;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover,
.pricing-tab.active {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pricing-grid.active {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card {
    background: #1e1e2f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(145deg, #1e1e2f, #232342);
    border: 1px solid rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-price .period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
}

.plan-desc {
    color: #94a3b8;
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 1rem;
}

.plan-features li i {
    width: 20px;
    height: 20px;
    color: #6366f1;
    flex-shrink: 0;
}

.pricing-note {
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-info-banner {
    grid-column: 1 / -1;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #cbd5e1;
}

.pricing-info-banner .info-icon {
    background: rgba(6, 182, 212, 0.2);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-info-banner i {
    color: #06b6d4;
    width: 24px;
    height: 24px;
}

.pricing-info-banner strong {
    display: block;
    color: #f8fafc;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.pricing-info-banner p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cbd5e1;
}


/* Antigravity Overrides for About Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

@media(max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-hero__text {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.about-hero__text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-hero__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.about-hero__card {
    background: rgba(30, 30, 70, 0.4);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media(max-width: 768px) {
    .about-panels {
        grid-template-columns: 1fr;
    }
}

.about-panel {
    background: rgba(30, 30, 70, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.about-panel:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 70, 0.5);
    border-color: rgba(99, 102, 241, 0.25);
}

.differentiators-list {
    gap: 1.5rem;
}

.differentiators-list li {
    padding-left: 3rem;
}

.differentiators-list li::before {
    font-size: 1.25rem;
    color: rgba(99, 102, 241, 0.8);
    top: 0;
}

/* NFC Card Section */
.nfc-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #151530 0%, #0f0f23 100%);
    border-top: 1px solid rgba(47, 51, 80, 0.5);
    border-bottom: 1px solid rgba(47, 51, 80, 0.5);
    padding: 6rem 0;
}

.nfc-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 968px) {
    .nfc-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nfc-visual {
        order: -1;
    }
}

.nfc-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.nfc-features {
    margin: 2.5rem 0;
    display: grid;
    gap: 1.25rem;
}

.nfc-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.nfc-features .feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    flex-shrink: 0;
}

.nfc-features .feature-icon i {
    width: 20px;
    height: 20px;
}

.nfc-notices {
    display: grid;
    gap: 1rem;
    margin: 2.5rem 0;
}

.notice-box {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid;
    font-size: 0.95rem;
    line-height: 1.6;
}

.notice-box.info {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.notice-box.info .notice-title {
    color: #60a5fa;
}

.notice-box.warning {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.notice-box.warning .notice-title {
    color: #f87171;
}

.notice-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.nfc-pricing-mini {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.75rem;
    margin-top: 2.5rem;
    backdrop-filter: blur(10px);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-of-type {
    border-bottom: none;
    margin-bottom: 1.25rem;
}

.price-row .label {
    color: #94a3b8;
    font-weight: 500;
    font-size: 1.05rem;
}

.price-row .price-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: #f8fafc;
}

.price-row .sub {
    font-size: 0.9rem;
    color: #64748b;
    margin-left: 0.5rem;
    font-weight: 400;
}

.price-row.highlight .price-tag {
    color: #818cf8;
}

.price-row .save {
    font-size: 0.85rem;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 0.75rem;
    font-weight: 500;
    vertical-align: middle;
}

.nfc-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}

.visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.main-visual {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-card-wrapper:hover .main-visual {
    transform: scale(1.06);
}