/* TMTS 2026 App Styles */

/* ===== CSS Variables ===== */
:root {
    --color-primary: #0C1B5F;
    --color-secondary: #c4d700;
    --color-cyan-dark: #0891b2;
    --color-cyan-bright: #00B0EC;
    --color-dark-bg: #060E36;
    --color-white: #ffffff;
    --color-text-light: #f0f9ff;
    --page-gutter: clamp(20px, 4vw, 32px);
    --safe-left: env(safe-area-inset-left);
    --safe-right: env(safe-area-inset-right);
}

/* ===== Base Styles ===== */

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

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.content_2026app {
    font-family: 'Noto Sans TC', sans-serif;
    background: var(--color-dark-bg);
    color: var(--color-text-light);
}

::selection {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1530px;
    margin: 0 auto;
    padding: 0;
    padding-left: calc(var(--page-gutter) + var(--safe-left));
    padding-right: calc(var(--page-gutter) + var(--safe-right));
}

.content_2026app>.app-wrap>.wrap {
    width: 100% !important;
    padding: 0 !important;
}

/* ===== Glass Morphism ===== */
.glass-morphism {
    background: rgba(12, 27, 95, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 176, 236, 0.25);
}

/* ===== Neon Text Effect ===== */
.neon-text {
    text-shadow: 0 0 15px rgba(196, 215, 0, 0.3);
}

/* ===== Sci-Fi Glow Line Effects ===== */
@keyframes scanline-move {
    0% {
        transform: translateY(-100%);
    }

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

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes border-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 176, 236, 0.2), inset 0 0 15px rgba(0, 176, 236, 0.05);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 176, 236, 0.4), inset 0 0 30px rgba(0, 176, 236, 0.1);
    }
}

/* Sci-fi scan line overlay */
.sci-fi-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 176, 236, 0.6) 50%, transparent 100%);
    animation: scanline-move 8s linear infinite;
    pointer-events: none;
    z-index: 2;
}

/* Sci-fi grid overlay */
.sci-fi-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 176, 236, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 176, 236, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* Horizontal glow line */
.glow-line-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 176, 236, 0.5) 20%, rgba(0, 176, 236, 0.8) 50%, rgba(0, 176, 236, 0.5) 80%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 176, 236, 0.4), 0 0 20px rgba(0, 176, 236, 0.2);
    animation: glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.glow-line-h.top {
    top: 0;
}

.glow-line-h.bottom {
    bottom: 0;
}

/* Corner accent glow */
.corner-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 2;
}

.corner-glow::before,
.corner-glow::after {
    content: '';
    position: absolute;
    background: rgba(0, 176, 236, 0.4);
}

.corner-glow.top-left {
    top: 0;
    left: 0;
}

/* .corner-glow.top-left::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    box-shadow: 0 0 10px rgba(0, 176, 236, 0.6);
} */

/* .corner-glow.top-left::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 60px;
    box-shadow: 0 0 10px rgba(0, 176, 236, 0.6);
} */

.corner-glow.top-right {
    top: 0;
    right: 0;
}

/* .corner-glow.top-right::before {
    top: 0;
    right: 0;
    width: 60px;
    height: 2px;
    box-shadow: 0 0 10px rgba(0, 176, 236, 0.6);
} */

/* .corner-glow.top-right::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 60px;
    box-shadow: 0 0 10px rgba(0, 176, 236, 0.6);
} */




/* ===== Tech Particles ===== */
.tech-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.tech-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
    will-change: transform, opacity;
}

/* ===== Animations ===== */
@keyframes float-irregular-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    20% {
        transform: translate(40px, -60px) scale(2.2);
    }

    40% {
        transform: translate(-30px, -90px) scale(0.4);
    }

    60% {
        transform: translate(50px, -30px) scale(1.8);
    }

    80% {
        transform: translate(-20px, -50px) scale(0.6);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float-irregular-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-50px, -40px) scale(2.5);
    }

    50% {
        transform: translate(30px, -70px) scale(0.3);
    }

    75% {
        transform: translate(-40px, 20px) scale(1.6);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes float-irregular-3 {
    0% {
        transform: translate(0, 0) scale(0.8);
    }

    15% {
        transform: translate(60px, -20px) scale(2.8);
    }

    35% {
        transform: translate(-40px, -80px) scale(0.5);
    }

    55% {
        transform: translate(20px, -40px) scale(2);
    }

    75% {
        transform: translate(-60px, -10px) scale(0.4);
    }

    100% {
        transform: translate(0, 0) scale(0.8);
    }
}

/* Size pulse animations - random breathing effect */
@keyframes size-pulse-1 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    30% {
        transform: scale(2.5);
        opacity: 0.8;
    }

    60% {
        transform: scale(0.5);
        opacity: 0.2;
    }

    80% {
        transform: scale(1.8);
        opacity: 0.6;
    }
}

@keyframes size-pulse-2 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    20% {
        transform: scale(0.3);
        opacity: 0.15;
    }

    50% {
        transform: scale(3);
        opacity: 0.9;
    }

    70% {
        transform: scale(0.8);
        opacity: 0.35;
    }
}

@keyframes size-pulse-3 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    25% {
        transform: scale(3.2);
        opacity: 0.85;
    }

    45% {
        transform: scale(0.4);
        opacity: 0.15;
    }

    75% {
        transform: scale(2);
        opacity: 0.7;
    }
}

@keyframes size-pulse-4 {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }

    15% {
        transform: scale(2.8);
        opacity: 0.75;
    }

    40% {
        transform: scale(0.5);
        opacity: 0.2;
    }

    65% {
        transform: scale(3.5);
        opacity: 0.9;
    }

    85% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

@keyframes size-pulse-5 {

    0%,
    100% {
        transform: scale(1.2);
        opacity: 0.45;
    }

    35% {
        transform: scale(0.3);
        opacity: 0.1;
    }

    55% {
        transform: scale(2.6);
        opacity: 0.85;
    }

    80% {
        transform: scale(0.7);
        opacity: 0.3;
    }
}

@keyframes size-pulse-6 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.35;
    }

    20% {
        transform: scale(2.2);
        opacity: 0.7;
    }

    50% {
        transform: scale(0.4);
        opacity: 0.15;
    }

    70% {
        transform: scale(3);
        opacity: 0.95;
    }

    90% {
        transform: scale(0.6);
        opacity: 0.25;
    }
}

@keyframes pulse-soft {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes float-phone {

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

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

/* Subtle float for UI Badges (restored original feel) */
@keyframes float-subtle-1 {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(10px, -15px);
    }

    66% {
        transform: translate(-5px, -8px);
    }

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

@keyframes float-subtle-2 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, -12px);
    }

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

.animate-float-1 {
    animation: float-subtle-1 6s ease-in-out infinite;
}

.animate-float-2 {
    animation: float-subtle-2 7s ease-in-out infinite;
}

.animate-float-3 {
    animation: float-subtle-1 8s ease-in-out infinite reverse;
}

.animate-phone {
    animation: float-phone 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== Navigation ===== */


.content_2026app .btn-primary {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 10px 32px;
    border-radius: 9999px;
    font-weight: 900;
    font-size: clamp(13px, 1.8vw, 14px);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.content_2026app .btn-primary:hover {
    transform: scale(1.05);
}

.content_2026app .btn-primary:active {
    transform: scale(0.95);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding-top: 32px;
    padding-bottom: 192px;
    overflow: visible;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 30%, #0f8fdd 70%, #172773 100%);
}

.hero-glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 60%;
    background: rgba(6, 182, 212, 0.25);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: rgba(29, 102, 125, 0.2);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 3;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.5);
    color: var(--color-cyan-bright);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: clamp(13px, 2vw, 40px);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.hero-title {
    font-size: clamp(36px, 6vw, 88px);
    font-weight: 900;
    line-height: 0.95;

    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-title-highlight {
    color: var(--color-secondary);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(16px, 2.6vw, 20px);
    color: rgba(240, 249, 255, 0.9);
    font-weight: 700;
    margin-bottom: clamp(13px, 2vw, 32px);
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: clamp(15px, 2.2vw, 18px);
    color: rgba(240, 249, 255, 0.8);
    font-weight: 500;
    margin-bottom: 56px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;

}
.hero-description.tw{
    max-width: 384px;
}
 @media (max-width:580px) {
    .hero-description {
        color: rgba(240, 249, 255, 0.9);
    }
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn-hero-primary {
    position: relative;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 900;
    font-size: clamp(14px, 2.2vw, 18px);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: scale(1.05);
}

.btn-hero-primary:active {
    transform: scale(0.95);
}

.btn-hero-secondary {
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 900;
    font-size: clamp(14px, 2.2vw, 18px);
    border: 2px solid #fff;
    background: rgba(6, 182, 212, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.1em;
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: var(--color-cyan-bright);
    color: #fff;
    border-color: var(--color-cyan-bright);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.hero-phone {
    flex: 1;
    position: relative;
    width: 100%;
    margin-left: -15vw;
}

/* Hero Devices */
.devices-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    perspective: 2000px;
}

.hero-app-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 161, 233, 0.3) 0%, rgba(0, 161, 233, 0.15) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-device-img {
    width: 100%;
    height: auto;
    display: block;
    transform: rotateX(5deg) rotateY(-3deg) rotateZ(-1deg);
    position: relative;
    z-index: 1;
}

/* Hero Floating Badges Content */
.floating-badge-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    padding: 20px;
    border-radius: 16px;
    width: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.floating-badge-card.large {

    border-radius: 20px;
    width: 256px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: #00a1e9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 161, 233, 0.3);
}

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

.badge-label {
    font-size: clamp(9.6px, 1.4vw, 11.2px);
    font-weight: 900;
    color: #00a1e9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.badge-label.dim {
    margin-bottom: 6px;
    opacity: 0.8;
}

.badge-value {
    font-size: clamp(14px, 2.2vw, 16px);
    font-weight: 900;
    color: #0d2245;
    line-height: 1.25;
}

.badge-value.uppercase {
    text-transform: uppercase;
}

.progress-bar-container {
    height: 10px;
    background: rgba(13, 34, 69, 0.15);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00a1e9 0%, #c4d700 100%);
    width: 75%;
    border-radius: 9999px;
    box-shadow: 0 0 10px rgba(0, 161, 233, 0.4);
}

@media (max-width:1024px) {
    .floating-badge-card {
        padding:16px
    }
    .hero-description{
        margin-bottom: 32px;
    }

}

/* ===== Phone Mockup ===== */
.phone-container {
    position: relative;
    width: 320px;
    height: 660px;
    margin: 0 auto;
}

.phone-case {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    border-radius: 50px;
    border: 10px solid #2a2a2a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 28px;
    background: #2a2a2a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 30;
}

.phone-screen {
    height: 100%;
    background: white;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

/* Phone Screen Components */
.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.phone-header-title {
    font-weight: 900;
    font-size: clamp(17px, 2.6vw, 20px);

}

.phone-header-icons {
    display: flex;
    gap: 16px;
    opacity: 0.7;
}

.phone-info-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px 24px;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.phone-info-item {
    border-left: 2px solid #f3f4f6;
    padding-left: 12px;
}

.phone-info-label {
    font-size: clamp(9.6px, 1.4vw, 11.2px);
    font-weight: 900;
    color: var(--color-app-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-info-value {
    font-size: clamp(13px, 1.8vw, 14px);
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.phone-banner {
    margin: 24px 16px 0;
    height: 144px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-app-blue), var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 24px;
    transition: transform 0.5s;
}

.phone-banner:hover {
    transform: scale(1.02);
}

.phone-search {
    margin: 24px 16px 0;
    padding: 0 16px;
    height: 44px;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: clamp(13px, 1.8vw, 14px);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.phone-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
    margin-top: 24px;
}

.phone-action-card {
    height: 96px;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.phone-action-card.primary {
    background: var(--color-primary);
    color: white;
}

.phone-action-card.secondary {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.phone-activity {
    margin: 24px 16px 0;
    padding: 16px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.phone-bottom-bar {
    margin-top: auto;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.phone-home-indicator {
    width: 96px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 9999px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 20;
    display: none;
}

.floating-badge-1 {
    left: 38%;
    top: 12%;
}

.floating-badge-2 {
    right: -96px;
    bottom: 128px;
}

@media (max-width:1680px) {
    .floating-badge-2 {
        right: 16px;
        bottom: 32px;
    }
}

@media (max-width:1280px) {
    .floating-badge-1 {
        left: 38%;
        top: 5%;
    }
    .floating-badge-2 {
        right: 16px;
        bottom: 32px;
    }
}
@media (max-width:1024px) {
    .floating-badge-1 {
        left: 28%;
        top: 0;
    }
    .floating-badge-2 {
        right: 0;
        bottom: -32px;
    }
}

/* ===== Section Styles ===== */
.section {
    padding: 96px 0;
    position: relative;
}

.section-dark {
    background: rgba(6, 14, 54, 0.6);
}

/* About section background */
#about {
    background:
        linear-gradient(64deg, #135aaa 0%, #162f6d 50%, #057dbb 100%);
    padding-top: 0;
    z-index: 8;
    position: relative;
}

/* Features section background */
#features {
    background: #0a0e2a;
}

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

/* Decorative arrow SVGs */
.features-arrow {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    width: 60%;
    max-width: 60%;
    left: 50%;
    transform: translateX(-50%);
}

.features-arrow-top {
    top: 0;
}

.features-arrow-bottom {
    bottom: 0%;

}

/* Floating glow orbs - organic irregular blobs */
.glow-orb {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.glow-orb-1 {
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(0, 80, 200, 0.8) 0%, rgba(0, 60, 180, 0.4) 30%, transparent 65%);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    top: -10%;
    left: -20%;
    filter: blur(50px);
    animation: orb-drift-1 20s ease-in-out infinite;
}

.glow-orb-2 {
    width: 800px;
    height: 650px;
    background: radial-gradient(ellipse, rgba(20, 50, 160, 0.85) 0%, rgba(15, 40, 130, 0.4) 35%, transparent 65%);
    border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
    top: 25%;
    right: -15%;
    filter: blur(45px);
    animation: orb-drift-2 25s ease-in-out infinite;
}

.glow-orb-3 {
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0, 150, 255, 0.7) 0%, rgba(0, 120, 220, 0.3) 30%, transparent 65%);
    border-radius: 50% 60% 45% 55% / 40% 55% 60% 45%;
    bottom: -15%;
    left: 20%;
    filter: blur(50px);
    animation: orb-drift-3 18s ease-in-out infinite;
}

/* Optional 4th subtle accent blob */
.glow-orb-4 {
    width: 500px;
    height: 450px;
    background: radial-gradient(ellipse, rgba(196, 215, 0, 0.5) 0%, rgba(196, 215, 0, 0.2) 35%, transparent 65%);
    border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
    top: 10%;
    left: 40%;
    filter: blur(55px);
    animation: orb-drift-2 22s ease-in-out infinite reverse;
}

@keyframes orb-drift-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    20% {
        transform: translate(200px, 80px) scale(1.15);
    }

    40% {
        transform: translate(100px, -120px) scale(0.9);
    }

    60% {
        transform: translate(-150px, 60px) scale(1.1);
    }

    80% {
        transform: translate(50px, 180px) scale(0.95);
    }
}

@keyframes orb-drift-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-180px, -100px) scale(1.2);
    }

    50% {
        transform: translate(150px, 120px) scale(0.85);
    }

    75% {
        transform: translate(-100px, 80px) scale(1.1);
    }
}

@keyframes orb-drift-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    20% {
        transform: translate(-120px, -160px) scale(1.15);
    }

    45% {
        transform: translate(200px, 60px) scale(0.9);
    }

    70% {
        transform: translate(-80px, 140px) scale(1.1);
    }
}


/* About section glass card */
#about .glass-morphism {
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    top: -80px;
    margin-bottom: -80px;
    position: relative;
}

.about-left-panel {
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 176, 236, 0.12), rgba(23, 39, 115, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
    border-right: 1px solid rgba(0, 176, 236, 0.25);
    backdrop-filter: blur(12px);
}

.about-title {
    font-size: clamp(29px, 4.8vw, 48px);
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.25;
    text-transform: uppercase;
}

.about-title .highlight {
    color: #c4d700;
}

.about-divider {
    width: 80px;
    height: 8px;
    background: #c4d700;
    border-radius: 9999px;
    margin-bottom: 40px;
    box-shadow: 0 0 10px #c4d700;
}

.about-right-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.about-main-text {
    font-size: clamp(17px, 2.4vw, 20px);
    font-weight: 700;
    margin-bottom: clamp(21px, 3vw, 40px);
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.9);
}

.about-sub-text {
    font-size: clamp(15px, 2.2vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.625;
    margin-bottom: clamp(24px, 3.5vw, 48px);
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #c4d700;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(13px, 1.8vw, 14px);
    border-bottom: 1px solid rgba(196, 215, 0, 0.3);
    padding-bottom: 4px;
    text-decoration: none;
    transition: border-color 0.3s;
}

.about-link:hover {
    border-bottom-color: rgba(196, 215, 0, 0.8);
}

.section-title {
    font-size: clamp(32px, 4.5vw, 40px);
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.section-divider {
    width: 64px;
    height: 6px;
    background: var(--color-secondary);
    margin: 0 auto 40px;
    border-radius: 9999px;
    box-shadow: 0 0 15px var(--color-secondary);
}

/* About Section Particles */
#aboutParticles {
    opacity: 0.2;
}

/* Features Section Header */
.features-header {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 56px;
}

.section-title-large {
    font-size: clamp(36px, 5vw, 48px);
}

/* Screen Details Wrapper */
.screen-details-wrapper {
    padding: 0 16px;
}




.section-subtitle {
    font-size: clamp(15px, 2.2vw, 18px);
    color: rgba(240, 249, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* ===== Feature Cards ===== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.feature-card {
    position: relative;
    padding: 48px;
    border-radius: 24px;
    transition: all 0.4s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(22, 47, 109, 0.6) 0%, rgba(12, 27, 95, 0.8) 50%, rgba(6, 14, 54, 0.9) 100%);
    border: 1px solid rgba(0, 176, 236, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 176, 236, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(0, 176, 236, 0.15), rgba(23, 39, 115, 0.25));
    border-color: rgba(0, 176, 236, 0.5);
    transform: translateY(-16px);
    box-shadow: 0 0 40px rgba(0, 176, 236, 0.3), 0 0 80px rgba(0, 176, 236, 0.1);
    animation: border-glow 3s ease-in-out infinite;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--color-cyan-bright);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-card:hover .feature-icon {
    background: var(--color-cyan-bright);
    color: white;
}

.feature-title {
    font-size: clamp(20px, 2.8vw, 24px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.25;
    transition: color 0.3s;
    color: var(--color-secondary);
}

.feature-card:hover .feature-title {
    color: var(--color-secondary);
}

.feature-description {
    color: rgba(240, 249, 255, 0.8);
    font-size: clamp(15px, 2.1vw, 18px);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 40px;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid color-mix(in srgb, var(--color-secondary) 60%, transparent 30%);
    padding-top: 32px;
}

.feature-benefits-title {
    font-size: clamp(14.4px, 2vw, 16px);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    text-transform: uppercase;
}

.feature-benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-benefit-tag {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.feature-card:hover .feature-benefit-tag {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 1);
}

.feature-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 128px;
    height: 128px;
    background: rgba(196, 215, 0, 0.05);
    filter: blur(64px);
    transition: all 0.3s;
}

.feature-card:hover .feature-glow {
    background: rgba(0, 172, 215, 0.5);
}

/* ===== Preview Section ===== */
#preview {
    background: linear-gradient(132deg, #070f33 0%, #172773 30%, #0059a1 60%, #0a0f29 100%);
    position: relative;
    overflow: hidden;
}

.preview-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 48px;
    text-align: center;
}

.preview-title-container {
    max-width: 672px;
}

.preview-title {
    font-size: clamp(33.6px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.25;
    text-transform: uppercase;
}

.preview-description {
    font-size: clamp(16px, 2.4vw, 20px);
    color: rgba(240, 249, 255, 0.7);
    font-weight: 500;
    line-height: 1.625;
}

.preview-full-specs-container {
    display: none;
}

.preview-full-specs-btn {
    padding: 20px 40px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 900;
    font-size: clamp(15.2px, 2.2vw, 18px);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.screens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.screen-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.screen-card-glass {
    aspect-ratio: 9/15;
    width: 100%;
    border-radius: 24px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;

}

.screen-card-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
}

.screen-icon-wrapper {
    position: relative;
    z-index: 10;
    background: #0C1B5F;
    padding: 40px;
    border-radius: 24px;
    transition: transform 0.3s;
}
@media (max-width: 1280px) {
    .screens-grid{
        gap: 32px;
    }
}
@media (max-width: 1024px) {

    .screen-icon-wrapper {
        padding:16px;
    }
    .screen-card-glass {
        margin-bottom: 24px;
    }
}

.screen-card-glass:hover .screen-icon-wrapper {
    transform: rotate(3deg);
}

.screen-hover-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.screen-card-glass:hover .screen-hover-gradient {
    opacity: 1;
}

.screen-card-glass:hover .screen-card-image {
    filter: brightness(1);
}

.screen-card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: cover;
    z-index: 5;
    filter: brightness(0.75);
    transition: filter 0.3s;
    border-radius: 16px;
}

.screen-card-image-blur {
    filter: brightness(0.7) blur(3px);
}

.screen-card-glass:hover .screen-card-image-blur {
    filter: brightness(1) blur(3px);
}

.screen-details {
    padding: 0 16px;
}

.screen-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: center;
}

.screen-tag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c4d700;
    box-shadow: 0 0 8px #c4d700;
}

.screen-tag-text {
    font-size: clamp(14.4px, 1.8vw, 15.2px);
    font-weight: 900;
    color: #c4d700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.screen-title {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 700;
    margin-bottom: 12px;
}

.screen-description {
    color: rgba(240, 249, 255, 0.9);
    font-size: clamp(14.4px, 1.8vw, 17.6px);
    line-height: 1.375;
}

/* ===== Download/CTA Section ===== */
.cta-section {
    background: url('/images/TMTS-onepage2026/download-section-bg.svg') no-repeat left center / auto 100%;
}

.cta-card-container {
    position: relative;
    background: linear-gradient(135deg, rgba(23, 39, 115, 0.85), rgba(0, 176, 236, 0.5));
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(0, 176, 236, 0.4);
    box-shadow: 0 0 60px rgba(0, 176, 236, 0.25), 0 0 120px rgba(0, 176, 236, 0.1);
}

.cta-glow-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(196, 215, 0, 0.1);
    filter: blur(150px);
    border-radius: 50%;
}

.cta-glow-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(0, 161, 233, 0.1);
    filter: blur(120px);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .cta-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 64px;
    }
}

.cta-left {
    flex: 1;
    text-align: left;
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-title {
    font-size: clamp(28.8px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.25;
    text-transform: uppercase;
}

.cta-description {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.625;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-download-options {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 24px;
}

@media (min-width: 1024px) {
    .cta-download-options {
        flex-direction: row;
    }
}

.cta-qr-card {
    background: white;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    border: none;
}

.cta-qr-image-container {
    padding: 16px;
    background: #f9fafb;
    border-radius: 0;
}

.cta-qr-image {
    max-width: 200px;
    aspect-ratio: 1 / 1;
    display: block;
}

.cta-qr-label {
    color: #0c4a6e;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: clamp(12px, 2vw, 14px);
    text-transform: uppercase;
}

.cta-stores-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 360px;
}

.cta-store-link {
    display: block;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.cta-store-link:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(0, 161, 233, 0.3);
}

.cta-store-badge {
    width: 100%;
    height: auto;
    display: block;
}



/* ===== Responsive Design ===== */
@media (min-width: 768px) {


    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }




}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .hero-content {
        flex-direction: row;
    }

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

    .hero-subtitle,
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .floating-badge {
        display: block;
    }

    .screens-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1366px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 96px;
    }

}

@media (max-width: 1280px) {
    .hero-phone {
        margin-left: -6vw;
    }

    .feature-card {
        min-height: 440px;
    }
}

@media (max-width: 1024px) {
    #about .glass-morphism {
        top: -72px;
        margin-bottom: -72px;
    }
    .hero-phone {
        margin-left: 0;
    }

    .feature-card {
        min-height: 420px;
        padding: 24px;
    }
    .feature-grid{
        gap: 32px;
    }
    .cta-card-container {
        padding: 32px;
    }
}

@media (max-width: 991.98px) {
     .screens-grid {
       display: flex;
       overflow-x: auto;
       gap: 16px;

    }
    .screens-grid .screen-card-container{
        width: 25vw;
        flex:0 0 25vw;
    }
}

@media (max-width: 768px) {
    .hero-section{
            padding-bottom: 128px;
    }
    #about .glass-morphism {
        grid-template-columns: 1fr;
        top: -48px;
        margin-bottom: -48px;
        border-radius: 20px;
    }

    .about-left-panel,
    .about-right-panel {
        padding: 32px;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    .about-divider{
        margin-bottom: 16px;
    }
    .features-header{
         margin-bottom: 32px;
    }


    .feature-grid {
        gap: 32px;
    }

    .screen-card-glass {
        padding: 32px;
    }

    .cta-content {
        gap: 32px;
    }

    .cta-left {
        text-align: center;
    }

    .cta-download-options {
        align-items: center;
    }
     .section {
        padding: 72px 0;
    }
    .cta-card-container{
        border-radius: 20px;
    }



}

@media (max-width: 640px) {
    .hero-section {
        padding-bottom: 128px;
    }

    .hero-badge {
        letter-spacing: 0.12em;
        padding: 8px 16px;
    }

    .hero-buttons {
        gap: 16px;
    }

    .feature-card {
        padding: 32px;
        min-height: auto;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 28px;
    }

    .section {
        padding: 48px 0;
    }

    .screen-card-glass {
        padding: 28px;
    }

    .cta-card-container {
        padding: 24px;
    }
     .screens-grid .screen-card-container{
        width: 33vw;
        flex:0 0 33vw;
    }
}

@media (max-width: 480px) {
    .hero-title {
        line-height: 1.05;
    }

    .hero-subtitle {
        letter-spacing: 0.03em;
    }

    .hero-description {
        margin-bottom: 40px;
    }



    .cta-qr-image {
        max-width: 160px;
    }


     .about-left-panel,
    .about-right-panel {
        padding: 24px;
    }
     .screens-grid .screen-card-container{
        width: 48vw;
        flex:0 0 48vw;
    }
}

@media (max-width: 414px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14.4px 24px;
    }

    .cta-download-options {
        gap: 16px;
    }

    .section-divider {
        margin-bottom: 32px;
    }
}

@media (max-width: 360px) {
    .hero-badge {
        font-size: 11.2px;
    }

    .feature-benefit-tag {
        padding: 6.4px 12px;
    }
    .feature-card {
        padding: 24px;
        min-height: auto;
    }

    .cta-title {
        line-height: 1.2;
    }


     .screens-grid .screen-card-container{
        width: 60vw;
        flex:0 0 60vw;
    }
}

.highlight-text {
    color: #c4d700;
}

.neon-text {
    text-shadow: 0 0 10px rgba(196, 215, 0, 0.5);
}

.hero-title-highlight {
    color: #c4d700;
}

/* Mobile Layout Reordering (< 1024px) */
@media (max-width: 1023px) {
    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-text {
        display: contents;
    }

    .hero-badge {
        order: 1;
    }

    .hero-title {
        order: 2;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-phone {
        order: 3;
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
        max-width: 500px;
        align-self: center;
    }

    .hero-subtitle {
        order: 4;
        margin-top: 0;
        text-align: center;
    }

    .hero-description {
        order: 5;
        text-align: center;
    }

    .hero-buttons {
        order: 6;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Performance Optimization - ��𧢲�毺���扯�賢�芸�� */
@media (max-width: 768px) {

    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }

    /* �芸�𡝗葡��𤘪�扯�� */
    .cta-section {
        transform: none !important;
        will-change: auto !important;
        backface-visibility: visible !important;
    }
    .cta-section .container{
        position: relative;
        z-index: 3;
    }

    /* 蝣箔�嘥捆�膥擃睃漲甇�Ⅱ */
    .content_2026app {
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* 靽桀儔 Core Features ��憛𢠃�滨�𠰴�誯�� */
    #features {
        position: relative;
        z-index: auto !important;
    }

    .feature-card {
        position: relative !important;
        transform: none !important;
        min-height: auto !important;
    }

    /* 蝳��鍂��𧢲�毺���hover����� */
    .feature-card:hover {
        transform: none !important;
        animation: none !important;
        background: linear-gradient(160deg, rgba(22, 47, 109, 0.6) 0%, rgba(12, 27, 95, 0.8) 50%, rgba(6, 14, 54, 0.9) 100%) !important;
    }

    /* 蝣箔�脲���匧�憛𠰴惜蝝𡁏迤蝣� */
    .section {
        position: relative;
        z-index: auto !important;
    }
}
