/* 
  Dream AI x Dream Wave - Premium Theme 
  Colors: Dark, Mysterious, Neon Accents (Cyan/Purple/Blue)
*/

:root {
    --bg-dark: #050507;
    --bg-card: rgba(20, 20, 25, 0.6);
    --bg-card-hover: rgba(30, 30, 40, 0.8);
    --primary-accent: #00f2ea;
    --secondary-accent: #ff0050;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #00f2ea 0%, #00a8f2 100%);
    --gradient-text: linear-gradient(90deg, #00f2ea, #ffffff, #00a8f2);
    --font-heading: 'Outfit', 'Noto Sans', 'Noto Sans Arabic', 'Noto Sans Devanagari', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans Sinhala', 'Noto Sans Tamil', 'Noto Sans Thai', sans-serif;
    --font-body: 'Inter', 'Noto Sans', 'Noto Sans Arabic', 'Noto Sans Devanagari', 'Noto Sans KR', 'Noto Sans SC', 'Noto Sans Sinhala', 'Noto Sans Tamil', 'Noto Sans Thai', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #0a0e27 0%, #050810 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

#bg-robot-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

#bg-robot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.2));
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, #00d9ff 0%, #9333ea 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-main);
    color: #000;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 242, 234, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all var(--transition-speed);
    font-family: var(--font-heading);
}

.btn-secondary:hover {
    border-color: var(--primary-accent);
    background: rgba(0, 242, 234, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100px;
    width: auto;
}

.logo-2 {
    height: 100px;
    width: auto;
}

.logo-wrap {
    width: 200px
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.main-nav a:hover {
    color: var(--primary-accent);
}

.header-cta {
    font-size: 0.9rem;
    padding: 10px 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    margin-left: 16px;
    margin-right: 16px;
    position: relative;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    cursor: pointer;
}

.lang-trigger .lang-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: rgba(10, 12, 20, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    z-index: 20;
}

.lang-menu.open {
    display: flex;
}

.lang-menu li {
    list-style: none;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-main);
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.lang-menu li:hover,
.lang-menu li.active {
    background: rgba(255, 255, 255, 0.08);
}

.lang-menu .lang-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.lang-menu .lang-code {
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lang-select {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    cursor: pointer;
}

.lang-select option {
    color: #000;
}

body.rtl {
    direction: rtl;
}

body.rtl .header-inner {
    flex-direction: row-reverse;
}

body.rtl .main-nav {
    flex-direction: row-reverse;
}

body.rtl .lang-menu {
    left: 0;
    right: auto;
}

body.rtl .hero-content,
body.rtl .section-header,
body.rtl .step-card,
body.rtl .feature-card,
body.rtl .pricing-card,
body.rtl .faq-item {
    text-align: right;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-section-2 {
    position: relative;
    padding-top: 5px;
    padding-bottom: 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 234, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 242, 234, 0.1);
    color: var(--primary-accent);
    padding: 15px 24px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border: 1px solid var(--primary-accent);
}

.hero-title {
    font-family: 'DreamAI', 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.hero-subtitle-main {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 10px;
    margin-bottom: 45px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 500;
}

.hero-description {
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-trust-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    margin-bottom: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.robot-container {
    position: relative;
    z-index: 1;
}

.hero-robot-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 242, 234, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

.hero-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 16px;
    width: 280px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 7s ease-in-out infinite reverse;
}

.hero-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-card-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
    /* Success green */
    margin-bottom: 10px;
}

.hero-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    transition: all var(--transition-speed);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 242, 234, 0.3);
    transform: translateY(-5px);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
}

.step-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    color: var(--primary-accent);
}

.step-card p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: left;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Dream Wave Section */
.wave-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wave-text {
    text-align: left;
}

.wave-text .section-title,
.wave-text .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.wave-list {
    margin-bottom: 30px;
}

.wave-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.wave-list li::before {
    content: "•";
    color: var(--primary-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.wave-list strong {
    color: var(--text-main);
}

.wave-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    border-left: 3px solid var(--secondary-accent);
    padding-left: 15px;
}

.wave-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.wave-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.wave-stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.wave-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.wave-stat-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    display: grid;
    gap: 10px;
    align-items: flex-start;
    grid-template-columns: repeat(4, 1fr);
    /* Default: 25% each */
}

/* Medium screens (tablet) → 50% each */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile screens → 100% each */
@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


.pricing-card {
    /*min-height: 742px;*/
}

.pricing-card.popular {
    border-color: var(--primary-accent);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.1);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-accent);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
    min-height: 242px;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Form */
.register-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.register-content {
    padding-right: 20px;
}

.register-benefits {
    margin-top: 30px;
}

.register-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.form-card {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.08);
}

.form-footnote {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item h3 {
}

.hero-title {
    font-size: 4rem;
}

.hero-cta-row {
    /*justify-content: center;*/
}

.hero-trust-row {
    justify-content: center;
}

.wave-list li {
    text-align: left;
    display: inline-block;
}

.wave-note {
    text-align: left;
}

.register-benefits li {
    text-align: left;
}

.hero-visual {
    margin-top: 50px;
}

.hero-card {
    right: 50%;
    transform: translateX(50%);
    bottom: -40px;
}

@media (max-width: 768px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .hero-subtitle,.hero-subtitle-main{
        text-align: center;
    }
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-inner {
        display: table-column;
    }

    .container {
        max-width: 100%;
    }
    .faq-grid {
        display: block;      /* removes grid layout */

    }
    .glass-card{
        margin-bottom: 15px;    /* adds top margin */
    }
    .footer-col{
        width: 100%;
    }
    .logo-2 {
        height: 100px;
        width: auto;
    }
    .download-btn img {
        width: 100%;
    }
    .hero-cta-row-mobile{
        flex-direction: row-reverse;
    }
    .hero-cta-row {
        flex-direction: column;
    }
    .hero-badge{
        text-align: center;
        width: 100%;
    }
    .footer-social{
        gap: 24px !important;
    }
}
.active{
    display: flex;
}

/* =========================================
   SYSTEM VISUAL STYLES
   ========================================= */
.system-card {
    background: rgba(10, 10, 20, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.system-card-2 {

    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.system-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.system-dots {
    display: flex;
    gap: 8px;
}

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

.dot-red {
    background-color: #ff5f56;
}

.dot-yellow {
    background-color: #ffbd2e;
}

.dot-green {
    background-color: #27c93f;
}

.system-title {
    color: #00ff9d;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.system-brand {
    color: #00d2ff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.system-body {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
}

.data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, .05) 25%, rgba(0, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, .05) 75%, rgba(0, 255, 255, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(0, 255, 255, .05) 25%, rgba(0, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, .05) 75%, rgba(0, 255, 255, .05) 76%, transparent 77%, transparent);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.system-robot-image {
    max-height: 100%;
    /* max-width: 90%; */
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.3));
}

.system-footer {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
}

.system-stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.system-stat {
    color: #a0a0b0;
}

.stat-label {
    color: #00d2ff;
    margin-right: 5px;
}

.stat-value {
    color: #fff;
    font-family: monospace;
}

.system-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-label {
    color: #27c93f;
    font-weight: 600;
}

.status-value.active {
    color: #27c93f;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(39, 201, 63, 0.5);
}

.status-msg {
    color: #00d2ff;
    font-family: monospace;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/* Responsive adjustments for the visual */
@media (max-width: 768px) {
    .system-card {
        max-width: 100%;
        margin-top: 30px;
    }

    .system-body {
        height: 250px;
    }
}

/* Pricing section extras */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.plan-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-accent);
    background: rgba(255, 0, 80, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.plan-meta {
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-align: center;
}

.spot-indicator {
    color: var(--text-muted);
    font-style: italic;
}

.spot-indicator::before {
    content: "● ";
    color: var(--primary-accent);
}

.pricing-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/*!* Force all 4 cards into a single row on desktop *!*/
/*.pricing-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 30px;*/
/*}*/

/*@media (max-width: 992px) {*/
/*    .pricing-grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*        !* 2-per-row on tablets *!*/
/*    }*/
/*}*/

/*@media (max-width: 600px) {*/
/*    .pricing-grid {*/
/*        grid-template-columns: 1fr;*/
/*        !* 1-per-row on mobile *!*/
/*    }*/
/*}*/


/* Prize On Top Styling */
.prize-top {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(0, 242, 234, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.prize-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    margin-bottom: 8px;
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.prize-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.entry-note {
    font-size: 0.8rem;
    color: var(--primary-accent);
    margin-top: 5px;
}

.price-bottom {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}


/* Slimmer, more premium hero card */
.slim-card {
    max-width: 380px !important;
    padding: 0 !important;
}

.minimal-footer {
    padding: 20px;
    text-align: center;
}

.minimal-footer .status-item {
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
}

.hero-note {
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-label {
    color: #27c93f;
    font-weight: 600;
}

.status-value.active {
    color: #27c93f;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(39, 201, 63, 0.5);
}

.status-msg {
    color: #00d2ff;
    font-family: monospace;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/* Responsive adjustments for the visual */
@media (max-width: 768px) {
    .system-card {
        max-width: 100%;
        margin-top: 30px;
    }

    .system-body {
        height: 250px;
    }
}

/* Pricing section extras */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.plan-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-accent);
    background: rgba(255, 0, 80, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.plan-meta {
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-align: center;
}

.spot-indicator {
    color: var(--text-muted);
    font-style: italic;
}

.spot-indicator::before {
    content: "● ";
    color: var(--primary-accent);
}

.pricing-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Force all 4 cards into a single row on desktop */
/*.pricing-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 30px;*/
/*}*/

/*@media (max-width: 992px) {*/
/*    .pricing-grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*        !* 2-per-row on tablets *!*/
/*    }*/
/*}*/

/*@media (max-width: 600px) {*/
/*    .pricing-grid {*/
/*        grid-template-columns: 1fr;*/
/*        !* 1-per-row on mobile *!*/
/*    }*/
/*}*/


/* Prize On Top Styling */
.prize-top {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(0, 242, 234, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.prize-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    margin-bottom: 8px;
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.prize-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.entry-note {
    font-size: 0.8rem;
    color: var(--primary-accent);
    margin-top: 5px;
}

.price-bottom {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}


/* Slimmer, more premium hero card */
.slim-card {
    max-width: 380px !important;
    padding: 0 !important;
}

.minimal-footer {
    padding: 20px;
    text-align: center;
}

.minimal-footer .status-item {
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
}

.hero-note {
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-label {
    color: #27c93f;
    font-weight: 600;
}

.status-value.active {
    color: #27c93f;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(39, 201, 63, 0.5);
}

.status-msg {
    color: #00d2ff;
    font-family: monospace;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/* Responsive adjustments for the visual */
@media (max-width: 768px) {
    .system-card {
        max-width: 100%;
        margin-top: 30px;
    }

    .system-body {
        height: 250px;
    }
}

/* Pricing section extras */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.plan-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-accent);
    background: rgba(255, 0, 80, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.plan-meta {
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-align: center;
}

.spot-indicator {
    color: var(--text-muted);
    font-style: italic;
}

.spot-indicator::before {
    content: "● ";
    color: var(--primary-accent);
}

.pricing-note {
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Force all 4 cards into a single row on desktop */
/*.pricing-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 30px;*/
/*}*/

/*@media (max-width: 992px) {*/
/*    .pricing-grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*        !* 2-per-row on tablets *!*/
/*    }*/
/*}*/

/*@media (max-width: 600px) {*/
/*    .pricing-grid {*/
/*        grid-template-columns: 1fr;*/
/*        !* 1-per-row on mobile *!*/
/*    }*/
/*}*/


/* Prize On Top Styling */
.prize-top {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(0, 242, 234, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.prize-label {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    margin-bottom: -2px;
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.prize-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 6px;
}

.entry-note {
    font-size: 0.8rem;
    color: var(--primary-accent);
    margin-top: 5px;
}

.price-bottom {
    text-align: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}


/* Slimmer, more premium hero card */
.slim-card {
    max-width: 380px !important;
    padding: 0 !important;
}

.minimal-footer {
    padding: 20px;
    text-align: center;
}

.minimal-footer .status-item {
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
}

.hero-note {
    margin-top: 25px;
    font-size: 0.85rem;
    opacity: 0.75;
}

/* =========================================
   SYSTEM CARD + AI SEARCH STYLES
   ========================================= */
.system-card {
    background: rgba(10, 10, 20, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.system-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

.system-dots {
    display: flex;
    gap: 8px;
}

.system-title {
    color: #00ff9d;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.system-brand {
    color: #00d2ff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.system-body {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
}

.data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, transparent 24%, rgba(0, 255, 255, .05) 25%, rgba(0, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, .05) 75%, rgba(0, 255, 255, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(0, 255, 255, .05) 25%, rgba(0, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 255, .05) 75%, rgba(0, 255, 255, .05) 76%, transparent 77%, transparent);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.system-robot-image {
    max-height: 90%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.system-robot-image.thinking {
    animation: robotPulse 1.5s infinite alternate;
}

@keyframes robotPulse {
    from {
        filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.3));
        transform: scale(1);
    }

    to {
        filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.8));
        transform: scale(1.05);
    }
}

/* Search Overlay */
.ai-search-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 10;
}

.search-input-wrapper {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.search-icon {
    color: var(--primary-accent);
    margin-right: 10px;
    display: flex;
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Result Card (Popup) */
.ai-result-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(0, 255, 157, 0.4);
    border-radius: 16px;
    padding: 15px;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUpCard 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-result-card.hidden {
    display: none;
}

@keyframes slideUpCard {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.asset-symbol {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.asset-name {
    color: var(--text-muted);
    font-size: 0.7rem;
    display: block;
}

.conf-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    text-align: right;
}

.conf-value {
    color: #00ff9d;
    font-weight: 700;
    font-size: 1.1rem;
}

.blurred-text {
    filter: blur(4px);
    user-select: none;
    opacity: 0.8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.system-footer {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
}

.system-stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.system-stat {
    color: #a0a0b0;
}

.stat-label {
    color: #00d2ff;
    margin-right: 5px;
}

.stat-value {
    color: #fff;
    font-family: monospace;
}

.system-tagline {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.system-tagline p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.spinner {
    animation: spin 2s linear infinite;
    stroke: currentColor;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@font-face {
    font-family: 'DreamAI';
    src: url('https://crescent-dev.s3.me-south-1.amazonaws.com/DREAMAI.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    background-image: linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Background Icons */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
    background: #fff;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.icon-2 {
    top: 20%;
    left: 85%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.icon-3 {
    top: 40%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 28s;
}

.icon-4 {
    top: 60%;
    left: 90%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.icon-5 {
    top: 80%;
    left: 15%;
    animation-delay: 3s;
    animation-duration: 26s;
}

.icon-6 {
    top: 30%;
    left: 75%;
    animation-delay: 5s;
    animation-duration: 23s;
}

.icon-7 {
    top: 50%;
    left: 20%;
    animation-delay: 2.5s;
    animation-duration: 27s;
}

.icon-8 {
    top: 70%;
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 21s;
}

.icon-9 {
    top: 15%;
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 29s;
}

.icon-10 {
    top: 85%;
    left: 60%;
    animation-delay: 3.5s;
    animation-duration: 25s;
}

.icon-11 {
    top: 45%;
    left: 40%;
    animation-delay: 0.5s;
    animation-duration: 24s;
}

.icon-12 {
    top: 65%;
    left: 70%;
    animation-delay: 2.2s;
    animation-duration: 26s;
}

@keyframes float {

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

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

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

    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
}

/*--------------------
footer
*/
.site-footer {
    background: #0a0e27;
}

.small-footer {
    border-top: 1px solid #363636;
    padding-top: 15px;
    padding-bottom: 10px;
    color: #bbbbbb;
}

.three-col-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0;
}

.footer-col {
    flex: 1;
}

.footer-links a,
.footer-social a {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover,
.footer-social a:hover {
    opacity: 1;
}

.footer-social a {
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icon svg {
    fill: #fff;
    opacity: 0.8;
    transition: 0.25s ease;
}

.social-icon:hover svg {
    opacity: 1;
    transform: scale(1.15);
}


/* Mobile responsive */
@media (max-width: 768px) {
    .three-col-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}

/*----------------------------
testimonial*/

.testimonial-section {
    width: 100%;
    padding: 40px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.video-box {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-box {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.yt-player {
    width: 100%;
    height: 100%;
}

.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.yt-player {
    width: 100%;
    height: 100%;
}
.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.video-box .thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-box .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 55px;
    color: white;
    /*background: rgba(0,0,0,0.6);*/
    /*padding: 18px 22px;*/
    border-radius: 50%;
    transition: 0.25s ease;
    cursor: pointer;
}

.video-box:hover .play-btn {
    /*background: rgba(255,255,255,0.8);*/
    color: black;
}
