/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
button {
    background: transparent;
}
body {
    background: #0d0d0d;
    color: #f0ede6;
    font-family: var(--font-body);
    overflow-x: hidden
}
:root {
    --c1: #0a0a0a;
    --c2: #f5f0e8;
    --c3: #e8331a;
    --c4: #1a1a2e;
    --font-big: 'Big Shoulders', sans-serif;
    --font-outfit: 'Outfit', sans-serif;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    background: #050812;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .6s ease;
}
#preloader.hide {
    animation: loaderExit .8s ease forwards;
}
@keyframes loaderExit {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
        visibility: hidden;
    }
}
.loader-logo {
    display: flex;
    gap: 8px;
    font-size: 120px;
    font-weight: 900;
    color: #d4ff00;
    font-family: var(--font-big);
    text-transform: uppercase;
}
.loader-logo span {
    opacity: 0;
    transform: translateY(120px);
    animation: letterReveal .6s forwards;
}
.loader-logo span:nth-child(1) {
    animation-delay: .1s;
}
.loader-logo span:nth-child(2) {
    animation-delay: .2s;
}
.loader-logo span:nth-child(3) {
    animation-delay: .3s;
}
.loader-logo span:nth-child(4) {
    animation-delay: .4s;
}
.loader-logo span:nth-child(5) {
    animation-delay: .5s;
}
.loader-logo span:nth-child(6) {
    animation-delay: .6s;
}
.loader-logo span:nth-child(7) {
    animation-delay: .7s;
}
.loader-logo span:nth-child(8) {
    animation-delay: .8s;
}
@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(120px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ─── HERO / NAV ─── */
.tf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    backdrop-filter: blur(18px);
}
.tf-nav .logo {
    font-family: var(--font-big);
    font-size: 33px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}
.tf-nav .badge {
    background: #e8331a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}
.tf-nav .nav-links {
    display: flex;
    gap: 28px;
    list-style: none
}
.tf-nav .nav-links a {
    color: rgba(255, 255, 255, 0.908);
    font-size: 18px;
    transition: color .2s;
    font-family: var(--font-outfit);
}
.tf-nav .nav-links a:hover {
    color: #fff
}
/*-----------------------[ 4.Button CSS ]------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-outfit);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--r-sm);
    transition: transform .4s, box-shadow .4s;
    position: relative;
    overflow: hidden;
}
.btn-quote {
    background: #d4ff00;
    border-radius: 8px;
    color: #000;
    font-family: var(--font-outfit);
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-quote:hover {
    border-radius: 0;
    border: 2px solid #FFF;
}
.btn-quote:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0;
    background-color: #FFF;
    transition: all 0.3s ease;
}
.btn-quote:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}
.btn-quote i {
    font-size: 24px;
}
/* ========= Transparent Btn  =============== */
.btn-trasp {
    background: transparent;
    color: #d4ff00;
    border: 2px solid #d4ff00;
    border-radius: 8px;
}
.btn-trasp:hover {
    color: #000;
    border-radius: 0;
    border: 2px solid #d4ff00;
}
.btn-trasp:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0;
    background-color: #d4ff00;
    transition: all 0.3s ease;
}
.btn-trasp:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}
/* ─── HERO SECTION ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 900px 600px at 50% 40%, rgba(212, 255, 0, .12) 0%, transparent 70%);
}
.hero-tag {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #d4ff00;
    margin-bottom: 20px;
    font-family: var(--font-outfit);
    font-weight: 600;
    border: 2px solid rgba(212, 255, 0, .4);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
}
.hero h1 {
    font-family: var(--font-big);
    font-size: 120px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 28px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.hero h1 em {
    color: #d4ff00;
}
.hero-sub {
    font-size: 18px;
    font-family: var(--font-outfit);
    color: rgba(255, 255, 255, .55);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ─── SECTION HEADER ─── */
.demos {
    background: #16161c;
    padding: 100px 0;
}
.section-header {
    text-align: center;
    padding-bottom: 48px;
}
.section-header .tag {
    font-size: 15px;
    letter-spacing: .15em;
    font-family: var(--font-outfit);
    text-transform: uppercase;
    color: #d4ff00;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}
.section-header h2 {
    font-family: var(--font-big);
    font-size: 55px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    line-height: 1.05;
}
.section-header h2 em {
    color: #d4ff00;
}
.section-header p {
    margin-top: 16px;
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-outfit);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.demos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.demo-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: #111;
    border: 15px solid #343a40;
}
.demo-card img {
    width: 100%;
    display: block;
}
.demo-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.demo-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d4ff00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}
.demo-content h3 {
    text-align: center;
    color: #fff;
    font-size: 35px;
    font-family: var(--font-big);
}
.demo-btn {
    text-align: center;
    color: #d4ff00;
    font-weight: 600;
    font-family: var(--font-outfit);
    text-transform: uppercase;
}
/* ─── FEATURES ─── */
.features {
    padding: 100px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}
.feature-card {
    padding: 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 2px solid rgba(255, 255, 255, .07);
    transition: border-color .2s, background .2s;
    text-align: center;
}
.feature-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: #d4ff00;
}
.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(232, 51, 26, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}
.feature-title {
    font-family: var(--font-outfit);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-top: 10px;
}
.feature-card img {
    width: 100px;
    height: 100px;
    object-fit: scale-down;
}
/* ─── PURCHASE CTA ─── */
.footer-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: rgba(212, 255, 0, .08);
    filter: blur(150px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.footer-tag {
    font-size: 15px;
    letter-spacing: .15em;
    font-family: var(--font-outfit);
    text-transform: uppercase;
    color: #d4ff00;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}
.footer-content h2 {
    margin: 30px 0;
    font-family: var(--font-big);
    font-size: 85px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-content p {
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-outfit);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.footer-btn {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 30px;
}
.copyright {
    color: rgba(255, 255, 255, .5);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-outfit);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}
.hero>* {
    animation: fadeInUp .7s ease both
}
.hero>*:nth-child(1) {
    animation-delay: .1s
}
.hero>*:nth-child(2) {
    animation-delay: .2s
}
.hero>*:nth-child(3) {
    animation-delay: .3s
}
.hero>*:nth-child(4) {
    animation-delay: .4s
}
.hero>*:nth-child(5) {
    animation-delay: .5s
}