/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0F1117;
    color: #F5F7FA;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */

.main-header {
    background: #0F1117;
    border-bottom: 1px solid #1E222D;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: #F5F7FA;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #C8D0D8;
    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #00FFA3;
}

.btn-login {
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    padding: 6px 14px;
    border-radius: 6px;
    color: #0F1117 !important;
}

/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #F5F7FA;
    border-radius: 3px;
}

/* ================= FOOTER ================= */

.main-footer {
    background: linear-gradient(
        180deg,
        #141824 0%,
        #10131C 50%,
        #0C0F15 100%
    );
    padding: 80px 0 30px;
    border-top: 1px solid #1E222D;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-col p {
    color: #AAB3BD;
    line-height: 1.6;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    text-decoration: none;
    font-size: 14px;
    color: #D0D6DC;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid #1E222D;
    font-size: 13px;
    color: #88929D;
}

/* ================= HERO ================= */

.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #001f2f, #0F1117);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-sub {
    margin-bottom: 30px;
    color: #B0BEC5;
}

.hero-right img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
}

/* ================= BUTTON ================= */

.primary-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    color: #0F1117;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}

/* ================= GLASS SECTION ================= */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-glass {
    background: #11151F;
}

.glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.glass-tile {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.glass-tile:hover {
    border-color: #00FFA3;
}

.highlight-tile {
    border: 1px solid #00FFA3;
}

/* ================= PRICING ================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pricing-card {
    background: #1A1F2B;
    padding: 40px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0,255,163,0.15);
}

.premium-card {
    border: 1px solid #00FFA3;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card li {
    margin-bottom: 8px;
}

.price {
    font-weight: 700;
    margin-bottom: 15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .glass-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    /* Mobile Nav */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #0F1117;
        border-top: 1px solid #1E222D;
        padding: 20px 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-menu.mobile-open {
        display: block;
    }
}
/* =========================================================
   SHOPPING PAGE — CLEAN RESET VERSION
   ========================================================= */

/* HERO */

.shopping-hero {
    padding: 140px 0 100px 0;
    background: radial-gradient(circle at top left, #001f2f, #0F1117);
    text-align: center;
}

.shopping-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 30px auto;

    background: linear-gradient(135deg, #ffffff, #cbd5df);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shopping-title span {
    display: block;
    margin-top: 10px;
    font-size: 42px;

    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shopping-description {
    max-width: 800px;
    margin: 0 auto 18px auto;
    font-size: 18px;
    color: #B0BEC5;
    line-height: 1.7;
}

/* VIDEO SECTION */

.shopping-media-section {
    padding: 120px 0;
    background: #0C111A;
    text-align: center;
}

.shopping-section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #F5F7FA;
}

.shopping-video-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.shopping-video-wrapper video {
    width: 70%;
    max-width: 950px;
    border-radius: 24px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

/* WAITLIST */

.shopping-waitlist {
    padding: 120px 0;
    background: linear-gradient(180deg, #0F1117 0%, #0C0F15 100%);
    display: flex;
    justify-content: center;
}

.waitlist-card {
    width: 600px;
    max-width: 90%;
    padding: 50px;
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    text-align: center;
}

.waitlist-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.waitlist-card p {
    font-size: 15px;
    color: #AAB3BD;
    margin-bottom: 30px;
}

.waitlist-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.waitlist-card input {
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #11151F;
    color: #fff;
}

.waitlist-card button {
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    color: #0F1117;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.waitlist-card button:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .shopping-title {
        font-size: 36px;
    }

    .shopping-title span {
        font-size: 32px;
    }

    .shopping-video-wrapper video {
        width: 95%;
    }
}



/* =========================================================
   ABOUT PAGE — PREMIUM V2
   ========================================================= */

/* HERO */

.about-hero {
    padding: 150px 0 100px 0;
    text-align: center;
    background: radial-gradient(circle at top right, #001f2f, #0F1117);
}

.about-title {
    font-size: 52px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-weight: 700;

    background: linear-gradient(135deg, #FFFFFF, #B8C2CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #B0BEC5;
    line-height: 1.6;
}

/* VISUAL */

.about-visual {
    padding: 100px 0;
    background: #0C111A;
}

.about-image-wrapper-large {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper-large img {
    width: 85%;
    max-width: 900px;
    border-radius: 28px;
    box-shadow: 0 60px 160px rgba(0,0,0,0.55);
}

.visual-cta {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    color: #0F1117;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(0,255,163,0.35);
}

/* CARDS */

.about-content-section {
    padding: 120px 0;
    background: #0F1117;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.about-card h3 {
    margin-bottom: 15px;
}

.about-card p,
.about-card li {
    color: #AEB7C2;
    line-height: 1.6;
}

.about-card ul {
    list-style: none;
    margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper-large img {
        width: 95%;
    }
}
/* =========================================================
   USE CASE PAGE — PREMIUM DESIGN
   ========================================================= */

/* HERO */

.use-hero {
    padding: 150px 0 100px 0;
    text-align: center;
    background: radial-gradient(circle at top left, #001f2f, #0F1117);
}

.use-title {
    font-size: 52px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-weight: 700;

    background: linear-gradient(135deg, #FFFFFF, #B8C2CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #B0BEC5;
    line-height: 1.6;
}

/* VIDEO SECTION */

.use-video-section {
    padding: 100px 0;
    background: #0C111A;
}

.video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.video-wrapper video {
    width: 85%;
    max-width: 900px;
    border-radius: 28px;
    box-shadow: 0 60px 160px rgba(0,0,0,0.55);
}

.video-overlay {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    color: #0F1117;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
}

/* USE CARDS */

.use-content-section {
    padding: 120px 0;
    background: #0F1117;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.use-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.use-card:hover {
    border-color: #00FFA3;
    transform: translateY(-5px);
}

.use-card h3 {
    margin-bottom: 15px;
}

.use-card p {
    color: #AEB7C2;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .use-grid {
        grid-template-columns: 1fr;
    }

    .video-wrapper video {
        width: 95%;
    }
}
/* =========================================================
   CONTACT PAGE — PREMIUM DESIGN
   ========================================================= */

/* HERO */

.contact-hero {
    padding: 150px 0 100px 0;
    text-align: center;
    background: radial-gradient(circle at top right, #001f2f, #0F1117);
}

.contact-title {
    font-size: 52px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-weight: 700;

    background: linear-gradient(135deg, #FFFFFF, #B8C2CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #B0BEC5;
    line-height: 1.6;
}

/* VIDEO */

.contact-video-section {
    padding: 100px 0;
    background: #0C111A;
}

.contact-video-wrapper {
    display: flex;
    justify-content: center;
}

.contact-video-wrapper video {
    width: 70%;           /* ✅ Your requirement */
    max-width: 900px;
    border-radius: 28px;
    box-shadow: 0 60px 160px rgba(0,0,0,0.55);
}

/* CONTACT GRID */

.contact-section {
    padding: 120px 0;
    background: #0F1117;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form-box h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #AEB7C2;
}

/* FORM */

.contact-form-box {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-box input,
.contact-form-box textarea {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #1E222D;
    background: #0F1117;
    color: #F5F7FA;
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #00FFA3;
    box-shadow: 0 0 0 2px rgba(0,255,163,0.15);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-video-wrapper video {
        width: 95%;
    }
}
/* =========================================================
   PRICING PAGE — PREMIUM DESIGN
   ========================================================= */

/* HERO */

.pricing-hero {
    padding: 150px 0 100px 0;
    text-align: center;
    background: radial-gradient(circle at top left, #001f2f, #0F1117);
}

.pricing-title {
    font-size: 52px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-weight: 700;

    background: linear-gradient(135deg, #FFFFFF, #B8C2CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #B0BEC5;
    line-height: 1.6;
}

/* VIDEO */

.pricing-video-section {
    padding: 100px 0;
    background: #0C111A;
}

.pricing-video-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-video-wrapper video {
    width: 80%;
    max-width: 900px;
    border-radius: 28px;
    box-shadow: 0 60px 160px rgba(0,0,0,0.55);
}

/* CARDS */

.pricing-section-main {
    padding: 120px 0;
    background: #0F1117;
}

.pricing-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pricing-card-main {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.pricing-card-main:hover {
    border-color: #00FFA3;
    transform: translateY(-5px);
}

.featured-plan {
    border: 1px solid #00FFA3;
}

.pricing-card-main ul {
    list-style: none;
    margin: 20px 0 30px 0;
}

.pricing-card-main li {
    margin-bottom: 8px;
    color: #AEB7C2;
}

.price-main {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .pricing-grid-main {
        grid-template-columns: 1fr;
    }

    .pricing-video-wrapper video {
        width: 95%;
    }
}
/* =========================================================
   FAQ PAGE — PREMIUM DESIGN
   ========================================================= */

/* HERO */

.faq-hero {
    padding: 150px 0 100px 0;
    text-align: center;
    background: radial-gradient(circle at top left, #001f2f, #0F1117);
}

.faq-title {
    font-size: 52px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-weight: 700;

    background: linear-gradient(135deg, #FFFFFF, #B8C2CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-title span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #B0BEC5;
    line-height: 1.6;
}

/* VIDEO */

.faq-video-section {
    padding: 100px 0;
    background: #0C111A;
}

.faq-video-wrapper {
    display: flex;
    justify-content: center;
}

.faq-video-wrapper video {
    width: 75%;
    max-width: 900px;
    border-radius: 28px;
    box-shadow: 0 60px 160px rgba(0,0,0,0.55);
}

/* FAQ GRID */

.faq-section {
    padding: 120px 0;
    background: #0F1117;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: #F5F7FA;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    color: #AEB7C2;
}

.faq-answer p,
.faq-answer {
    padding-bottom: 20px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .faq-video-wrapper video {
        width: 95%;
    }
}
/* =========================================================
   HOMEPAGE AR VIDEO SECTION — CLEAN CENTERED VERSION
   ========================================================= */

.home-ar-section {
    padding: 160px 0;
    background: linear-gradient(180deg, #0F1117 0%, #0C111A 100%);
    text-align: center;
}

/* Heading */

.home-ar-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;

    background: linear-gradient(135deg, #ffffff 0%, #cbd5df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-ar-title span {
    display: block;
    margin-top: 14px;
    font-size: 32px;

    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Video Wrapper */

.home-ar-video-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-ar-video-wrapper video {
    width: 70vw;               /* TRUE viewport centering */
    max-width: 1050px;
    border-radius: 28px;
    box-shadow: 0 60px 160px rgba(0,0,0,0.6);
    transition: 0.4s ease;
}

.home-ar-video-wrapper video:hover {
    transform: scale(1.015);
}

/* Responsive */

@media (max-width: 900px) {

    .home-ar-title {
        font-size: 30px;
    }

    .home-ar-title span {
        font-size: 22px;
    }

    .home-ar-video-wrapper video {
        width: 95vw;
    }
}
/* =========================================================
   LOGIN PAGE — PREMIUM DESIGN
   ========================================================= */

/* HERO */

.login-hero {
    padding: 160px 0 120px 0;
    text-align: center;
    background: radial-gradient(circle at top left, #001f2f, #0F1117);
}

.login-title {
    font-size: 52px;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 25px auto;
    font-weight: 700;

    background: linear-gradient(135deg, #FFFFFF, #B8C2CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-subtitle {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #B0BEC5;
    line-height: 1.6;
}

/* LOGIN SECTION */

.login-section {
    padding: 120px 0;
    background: #0C111A;
}

.login-card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}

.login-card h3 {
    margin-bottom: 30px;
    font-size: 22px;
}

.login-google-btn {
    display: inline-block;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00E5FF, #00FFA3);
    color: #0F1117;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.login-google-btn:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .login-title {
        font-size: 36px;
    }

    .login-card {
        padding: 40px;
    }
}
