/* =============================================
   TASKONWAY — Premium Redesigned CSS
   Glassmorphism + Neon Accents + Responsive Layouts
   ============================================= */

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

:root {
    --bg: #010712;
    --cyan: #00f0ff;
    --orange: #ff6b00;
    --rose: #ff2a7a;
    --text: #e2ebff;
    --dim: rgba(226, 235, 255, 0.55);
    --border: rgba(0, 240, 255, 0.08);
    --border-glow: rgba(255, 107, 0, 0.15);
    --surface: rgba(2, 10, 25, 0.45);
    --surface-hover: rgba(2, 10, 25, 0.65);
    
    --fh: 'Chakra Petch', sans-serif;
    --fb: 'Rajdhani', sans-serif;
    --fm: 'Share Tech Mono', monospace;
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    --neon-glow: 0 0 20px rgba(255, 107, 0, 0.2);
    --cyan-glow: 0 0 20px rgba(0, 240, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fb);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.15);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

/* ===== DYNAMIC LAUNCH LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

#loader.gone {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.ld-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ld-logo img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(255, 107, 0, 0.35);
}

.ld-rings {
    position: absolute;
    inset: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ld-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.15);
    animation: ldRingCycle 3s linear infinite;
}

.ld-ring.r1 { width: 130px; height: 130px; animation-delay: 0s; }
.ld-ring.r2 { width: 170px; height: 170px; animation-delay: 1s; }
.ld-ring.r3 { width: 210px; height: 210px; animation-delay: 2s; }

@keyframes ldRingCycle {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.ld-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.ld-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    box-shadow: 0 0 10px var(--cyan);
    transition: width 0.15s linear;
}

.ld-msg {
    font-family: var(--fm);
    font-size: 0.75rem;
    color: var(--dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== WEBGL CANVAS BACKGROUND ===== */
#gl-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
}

/* ===== PREMIUM NAVIGATION SYSTEM ===== */
.ht-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: rgba(1, 7, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.ht-nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ht-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--fh);
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: 0.04em;
}

.ht-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.35);
}

.ht-logo strong {
    color: var(--orange);
}

.ht-nav-links {
    display: flex;
    gap: 1.2rem;
}

.ht-nav-links a {
    text-decoration: none;
    font-family: var(--fh);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease), text-shadow 0.3s;
}

.ht-nav-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.ht-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.4rem;
    background: transparent;
    border: 1px solid var(--cyan);
    border-radius: 8px;
    color: var(--cyan);
    font-family: var(--fh);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: all 0.3s var(--ease);
}

.ht-cta-btn:hover {
    background: rgba(0, 240, 255, 0.08);
    box-shadow: var(--cyan-glow);
    transform: translateY(-1px);
}

.ht-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.ht-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
}

/* ===== MAIN SECTIONS ===== */
.main-content {
    position: relative;
    z-index: 10;
}

.sec {
    padding: 120px 0;
    position: relative;
}

.con {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.sec-eye {
    font-family: var(--fm);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.2rem;
}

.sec-eye.center {
    display: block;
    text-align: center;
}

.sec-title {
    font-family: var(--fh);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.sec-title.center {
    text-align: center;
}

.sec-desc {
    font-size: 1rem;
    color: var(--dim);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.sec-desc.center {
    text-align: center;
}

.neon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--rose) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO SECTION ===== */
.hero-sec {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    align-items: center;
}

.hero-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fm);
    font-size: 0.65rem;
    color: var(--dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hc-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: var(--cyan-glow);
    animation: pulseGlow 1.5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.hc-mono {
    color: var(--cyan);
}

.hc-title {
    font-family: var(--fh);
    font-size: clamp(2rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.ht-line {
    display: block;
}

.ht-line-glow {
    background: linear-gradient(135deg, var(--orange) 0%, var(--rose) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hc-title em {
    font-style: italic;
    color: var(--cyan);
}

.hc-sub {
    font-size: 1.05rem;
    color: var(--dim);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Quick Examples Badges */
.hero-examples-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
    width: 100%;
    max-width: 480px;
}

.ex-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(2, 10, 25, 0.45);
    border: 1.2px solid rgba(0, 240, 255, 0.06);
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    font-family: var(--fb);
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease);
}

.ex-badge:hover {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.03);
    transform: translateX(5px);
}

.ex-icon {
    font-weight: 600;
    color: var(--text);
}

.ex-arrow {
    color: var(--cyan);
    font-weight: bold;
    opacity: 0.7;
}

.ex-trigger {
    color: var(--orange);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.15);
}

.hc-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    color: #010712;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--neon-glow);
    transition: all 0.3s var(--ease);
}

.hc-btn-primary:hover {
    box-shadow: 0 0 35px rgba(255, 107, 0, 0.45);
    transform: translateY(-2px);
}

.hc-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dim);
    font-family: var(--fh);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: all 0.3s var(--ease);
}

.hc-btn-ghost:hover {
    border-color: rgba(0, 240, 255, 0.35);
    color: var(--cyan);
    transform: translateY(-2px);
}

/* ===== PHONE FRAME MOCKUP ===== */
.hero-right-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-frame {
    width: 290px;
    height: 580px;
    background: #020a19;
    border: 3.5px solid rgba(255, 107, 0, 0.3);
    border-radius: 42px;
    box-shadow: var(--glass-shadow), var(--neon-glow);
    padding: 10px;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.hp-screen {
    width: 100%;
    height: 100%;
    background: #010712;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hp-status-bar {
    height: 38px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--dim);
    font-family: var(--fm);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hp-notch {
    width: 82px;
    height: 18px;
    background: #000000;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hp-icons {
    display: flex;
    gap: 8px;
}

.hp-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}

.hp-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--fh);
    font-size: 0.9rem;
    font-weight: 700;
}

.hp-brand-logo img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.hp-ping-active {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--fm);
    font-size: 0.58rem;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 5px;
    height: 5px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseGreen 1.2s infinite alternate;
}

@keyframes pulseGreen {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.hp-list-wrap {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-grow: 1;
    overflow-y: auto;
}

.hp-map-widget {
    background: rgba(2, 10, 25, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.65rem;
    position: relative;
    overflow: hidden;
}

.hp-svg-map {
    width: 100%;
    height: auto;
    display: block;
    background: #020b1c;
    border-radius: 12px;
}

.svg-geofence {
    stroke-dasharray: 4 2;
    animation: rotateGeofence 25s linear infinite;
    transform-origin: 50px 30px;
}

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

.svg-car {
    animation: pulseCar 1.5s infinite ease-in-out alternate;
}

@keyframes pulseCar {
    0% { r: 3; }
    100% { r: 5; box-shadow: 0 0 10px #00f0ff; }
}

.hp-map-tag {
    font-family: var(--fm);
    font-size: 0.58rem;
    color: var(--dim);
    text-align: center;
    margin-top: 6px;
    text-transform: uppercase;
}

.hp-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hp-card-orange {
    border-color: rgba(255, 107, 0, 0.2);
}

.hp-card-cyan {
    border-color: rgba(0, 240, 255, 0.15);
}

.hpc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hpc-meta {
    font-family: var(--fm);
    font-size: 0.58rem;
    color: var(--dim);
    text-transform: uppercase;
}

.hpc-dist {
    font-family: var(--fm);
    font-size: 0.58rem;
    color: var(--orange);
}

.hp-card h4 {
    font-family: var(--fh);
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 700;
}

.hp-card p {
    font-size: 0.7rem;
    color: var(--dim);
    line-height: 1.3;
}

.hpc-foot {
    margin-top: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hpc-status {
    font-size: 0.65rem;
    color: var(--dim);
}

.hpc-alert-pill {
    font-family: var(--fm);
    font-size: 0.58rem;
    color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 1px 6px;
    border-radius: 4px;
    animation: hpcPulseFade 1.2s infinite alternate;
}

@keyframes hpcPulseFade {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* ===== CORE FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.fc {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0.5rem 1.2rem;
    align-items: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease);
}

.fc:hover {
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow: var(--glass-shadow), var(--neon-glow);
    transform: translateY(-4px);
    background: var(--surface-hover);
}

.fc-n {
    font-family: var(--fh);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 107, 0, 0.08);
    letter-spacing: -0.05em;
    line-height: 1;
    grid-row: span 2;
    align-self: center;
}

.fc-ico {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}

.fc-body h3 {
    font-family: var(--fh);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fc-body p {
    font-size: 0.85rem;
    color: var(--dim);
    line-height: 1.6;
}

/* ===== INTERACTIVE PLAYGROUND WIDGET ===== */
.playground-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.playground-controls {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pg-tab {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.2rem 1.6rem;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ease);
}

.pg-tab:hover {
    border-color: rgba(0, 240, 255, 0.25);
    background: var(--surface-hover);
}

.pg-tab.active {
    border-color: rgba(255, 107, 0, 0.35);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: var(--neon-glow);
}

.pg-num {
    font-family: var(--fm);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dim);
}

.pg-tab.active .pg-num {
    color: var(--orange);
}

.pg-btn-text {
    display: flex;
    flex-direction: column;
}

.pg-btn-text strong {
    font-family: var(--fh);
    font-size: 0.95rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pg-btn-text span {
    font-size: 0.75rem;
    color: var(--dim);
    margin-top: 2px;
}

/* Playground Screen Content Custom Visualizers */
.playground-visualizer {
    display: flex;
    justify-content: center;
}

.pg-phone-mockup {
    width: 275px;
    height: 520px;
    background: #020a19;
    border: 3px solid rgba(0, 240, 255, 0.25);
    border-radius: 38px;
    box-shadow: var(--glass-shadow), var(--cyan-glow);
    padding: 8px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.pg-phone-screen {
    width: 100%;
    height: 100%;
    background: #010712;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Custom Visual content inside Playground screen mock */
.pg-widget-map {
    background: #020b1c;
    border-radius: 14px;
    padding: 0.6rem;
    position: relative;
    border: 1px solid var(--border);
}

.pg-vector-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-label {
    display: block;
    text-align: center;
    font-family: var(--fm);
    font-size: 0.58rem;
    color: var(--dim);
    margin-top: 5px;
}

.pg-panel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem;
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pg-card-tag {
    font-family: var(--fm);
    font-size: 0.58rem;
    color: var(--cyan);
    text-transform: uppercase;
}

.pg-panel-card h4 {
    font-family: var(--fh);
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 700;
}

.pg-panel-card p {
    font-size: 0.72rem;
    color: var(--dim);
    line-height: 1.35;
}

.pg-card-alert-status {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.62rem;
    font-family: var(--fm);
}

.pg-card-alert-status span {
    color: var(--dim);
}

.active-badge {
    align-self: flex-start;
    color: var(--orange);
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.active-badge.cyan-btn {
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.08);
    border-color: rgba(0, 240, 255, 0.2);
}

.animate-flicker {
    animation: flicker 1s infinite alternate;
}

@keyframes flicker {
    0% { opacity: 0.65; }
    100% { opacity: 1; }
}

/* AI Command Parser Visual Styles */
.pg-voice-input-box {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem;
    background: rgba(2, 10, 25, 0.8);
    margin-bottom: 1rem;
    position: relative;
}

.voice-wave-mic {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--cyan);
    font-family: var(--fm);
    margin-bottom: 5px;
}

.voice-mic-icon {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: voiceActive 1s infinite alternate;
}

@keyframes voiceActive {
    0% { transform: scale(0.8); box-shadow: none; }
    100% { transform: scale(1.3); box-shadow: var(--cyan-glow); }
}

.spoken-text-line {
    font-size: 0.78rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.4;
    min-height: 2.2rem;
}

.pg-parsed-labels {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.parsed-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 0.65rem;
    font-family: var(--fm);
}

.parsed-item span {
    color: var(--dim);
    margin-right: 5px;
}

.parsed-item b {
    color: var(--cyan);
}

.parsed-item.orange b {
    color: var(--orange);
}

/* Route timeline visual styles */
.pg-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding-left: 1.2rem;
}

.pg-timeline-list::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
    width: 1.5px;
    background: rgba(0, 240, 255, 0.15);
}

.timeline-step {
    position: relative;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: -19px;
    top: 4px;
    width: 8px;
    height: 8px;
    background: #010712;
    border: 2px solid var(--cyan);
    border-radius: 50%;
}

.timeline-step.active::before {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: var(--neon-glow);
}

.timeline-step h5 {
    font-family: var(--fh);
    font-size: 0.75rem;
    color: var(--text);
}

.timeline-step p {
    font-size: 0.65rem;
    color: var(--dim);
    margin-top: 2px;
}

/* Music Wave / Sound Alerts Visuals */
.pg-audio-card {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.wave-bars-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 50px;
}

.wave-bar {
    width: 3px;
    height: 8px;
    background: var(--orange);
    border-radius: 3px;
    animation: soundWaveOsc 0.8s ease-in-out infinite alternate;
}

.wave-bar.h1 { height: 16px; animation-delay: 0.1s; }
.wave-bar.h2 { height: 32px; animation-delay: 0.3s; }
.wave-bar.h3 { height: 42px; animation-delay: 0.5s; }
.wave-bar.h4 { height: 20px; animation-delay: 0.2s; }
.wave-bar.h5 { height: 35px; animation-delay: 0.4s; }

@keyframes soundWaveOsc {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.3); }
}

.audio-script-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem;
    font-size: 0.72rem;
    line-height: 1.4;
    color: var(--text);
    font-style: italic;
}

/* ===== COMMUTE PLANNER FLOW GRID ===== */
.planner-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.psg-left h3 {
    font-family: var(--fh);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.psg-left p {
    font-size: 1rem;
    color: var(--dim);
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.planner-specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.planner-specs-list li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.planner-specs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

.planner-flow-container {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.flow-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    align-items: center;
}

.fs-num {
    width: 36px;
    height: 36px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-size: 0.95rem;
    color: var(--cyan);
    font-weight: 700;
}

.fs-info h4 {
    font-family: var(--fh);
    font-size: 0.95rem;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.fs-info p {
    font-size: 0.8rem;
    color: var(--dim);
    line-height: 1.4;
}

/* ===== CHAT SHOWCASE SECTION ===== */
.chat-sec { background: transparent; }

.chat-showcase-wrap {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

/* --- Feature Bullets --- */
.chat-feat-col { display: flex; flex-direction: column; gap: 1.6rem; }

.chat-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: all 0.35s ease;
    cursor: default;
}
.chat-feat-item:hover,
.chat-feat-item.cf-active {
    background: rgba(0,229,255,0.06);
    border-color: rgba(0,229,255,0.22);
    transform: translateX(6px);
}
.cf-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    margin-top: 2px;
}
.cf-title {
    font-family: var(--f-head);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.cf-desc { color: var(--dim); font-size: 0.82rem; line-height: 1.5; margin: 0; }

/* --- Phone Frame --- */
.chat-phone-col { display: flex; justify-content: center; }

.chat-phone-frame {
    width: 310px;
    height: 580px;
    background: #0a0e1a;
    border-radius: 38px;
    border: 2px solid rgba(0,229,255,0.25);
    box-shadow:
        0 0 0 6px rgba(0,229,255,0.04),
        0 0 60px rgba(0,229,255,0.12),
        0 32px 80px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Phone top notch effect */
.chat-phone-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 24px;
    background: #0a0e1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.cp-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 18px 6px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--f-mono);
    flex-shrink: 0;
}
.cp-sb-icons { display: flex; gap: 6px; align-items: center; }

.cp-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
    background: rgba(255,255,255,0.02);
}
.cp-avatar-wrap { position: relative; flex-shrink: 0; }
.cp-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-head);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}
.cp-online-dot {
    position: absolute; bottom: 1px; right: 1px;
    width: 9px; height: 9px;
    background: #00e676;
    border-radius: 50%;
    border: 2px solid #0a0e1a;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.5); }
    50% { box-shadow: 0 0 0 4px rgba(0,230,118,0); }
}
.cp-chat-info { flex: 1; min-width: 0; }
.cp-chat-name { color: #fff; font-size: 0.82rem; font-weight: 600; font-family: var(--f-head); }
.cp-chat-sub  { color: rgba(255,255,255,0.35); font-size: 0.65rem; margin-top: 1px; }
.cp-header-icons { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* Messages area */
.cp-messages {
    flex: 1;
    overflow: hidden;
    padding: 10px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

/* --- Chat Bubble (plain message) --- */
.cm-bubble {
    max-width: 80%;
    padding: 8px 11px;
    border-radius: 14px;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #e0e0e0;
    animation: bubble-in 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    position: relative;
}
.cm-bubble.me {
    align-self: flex-end;
    background: rgba(0,229,255,0.15);
    border: 1px solid rgba(0,229,255,0.2);
    border-bottom-right-radius: 3px;
}
.cm-bubble.them {
    align-self: flex-start;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom-left-radius: 3px;
}
.cm-sender {
    font-size: 0.6rem;
    font-weight: 700;
    margin-bottom: 3px;
    font-family: var(--f-head);
}
.cm-time { font-size: 0.58rem; color: rgba(255,255,255,0.28); text-align: right; margin-top: 3px; }

/* --- Task Card Bubble --- */
.cm-task-card {
    max-width: 88%;
    align-self: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    border-bottom-left-radius: 3px;
    padding: 10px 12px;
    animation: bubble-in 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
    font-size: 0.72rem;
}
.cm-task-card.mine {
    align-self: flex-end;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 3px;
}
.cm-task-card.completed { border-color: rgba(0,230,118,0.25); }

.ct-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
}
.ct-badge {
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 5px;
    letter-spacing: 0.5px;
    font-family: var(--f-head);
}
.ct-badge.pending  { background: rgba(255,152,0,0.12); color: #ff9800; }
.ct-badge.done     { background: rgba(0,230,118,0.12); color: #00e676; }
.ct-badge.daily    { background: rgba(0,229,255,0.1);  color: var(--cyan); }
.ct-type { font-size: 0.6rem; color: rgba(255,255,255,0.25); }

.ct-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--f-head);
}
.ct-title.strike { text-decoration: line-through; opacity: 0.5; }

.ct-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
}
.ct-meta-icon { font-size: 0.65rem; }
.ct-sender-tag { font-size: 0.6rem; font-weight: 700; margin-bottom: 4px; }

/* Input bar */
.cp-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.cp-input-field {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    min-height: 34px;
    font-family: var(--f-mono);
    overflow: hidden;
}
.cp-cursor {
    color: var(--cyan);
    animation: blink 1s step-end infinite;
    margin-left: 1px;
    font-weight: 100;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.cp-send-btn {
    width: 34px; height: 34px;
    background: var(--cyan);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0,229,255,0.4);
}

@keyframes bubble-in {
    from { opacity: 0; transform: scale(0.85) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Typing indicator */
.cm-typing {
    align-self: flex-start;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    border-bottom-left-radius: 3px;
    padding: 9px 14px;
    display: flex;
    gap: 4px;
    align-items: center;
    animation: bubble-in 0.3s ease both;
}
.cm-typing span {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    animation: bounce-dot 1.2s infinite;
}
.cm-typing span:nth-child(2) { animation-delay: 0.2s; }
.cm-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce-dot {
    0%,80%,100% { transform: scale(1); opacity:0.35; }
    40% { transform: scale(1.3) translateY(-2px); opacity:1; }
}

/* Responsive */
@media(max-width: 900px) {
    .chat-showcase-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .chat-phone-col { order: -1; }
    .chat-phone-frame { width: 280px; height: 520px; }
}

/* ===== SUBSCRIPTION CARDS GRID ===== */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    align-items: stretch;
}

.pc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s var(--ease);
    box-shadow: var(--glass-shadow);
}

.pc:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--glass-shadow), 0 0 25px rgba(0, 240, 255, 0.05);
}

.pc-pro-highlight {
    border-color: rgba(255, 107, 0, 0.25);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 42, 122, 0.02) 100%);
}

.pc-pro-highlight:hover {
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: var(--glass-shadow), var(--neon-glow);
}

.pro-tag {
    align-self: flex-start;
    font-family: var(--fm);
    font-size: 0.62rem;
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 3px 11px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.pc h3 {
    font-family: var(--fh);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.pc-price {
    font-family: var(--fh);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.pc-pro-highlight .pc-price {
    text-shadow: var(--neon-glow);
}

.pc-price span {
    font-family: var(--fb);
    font-size: 0.85rem;
    color: var(--dim);
    font-weight: 400;
}

.plan-sub {
    font-family: var(--fm);
    font-size: 0.72rem;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.8rem;
}

.pc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.2rem;
}

.pc li {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ck {
    color: var(--orange);
}

.dm {
    color: var(--dim);
    opacity: 0.35;
}

.btn-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dim);
    font-family: var(--fh);
    font-weight: 600;
    font-size: 0.72rem;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.btn-g:hover {
    border-color: rgba(255, 107, 0, 0.4);
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    background: linear-gradient(135deg, var(--orange), var(--rose));
    color: #010712;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 0.72rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--neon-glow);
    transition: all 0.3s var(--ease);
}

.btn-p:hover {
    box-shadow: 0 0 45px rgba(255, 107, 0, 0.65);
    transform: translateY(-2px);
}

/* ===== GLASSMORPHIC CONTACT CARD ===== */
.cnt-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 28px;
    padding: 3.5rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--glass-shadow), var(--neon-glow);
    transition: all 0.3s;
}

.cnt-card:hover {
    border-color: rgba(255, 107, 0, 0.4);
    background: var(--surface-hover);
}

.cnt-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    box-shadow: var(--neon-glow);
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.cnt-card h2 {
    font-family: var(--fh);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.cnt-card p {
    font-size: 0.92rem;
    color: var(--dim);
    margin-bottom: 2rem;
    line-height: 1.65;
}

.support-action-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cnt-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: rgba(255, 107, 0, 0.07);
    border: 1px solid rgba(255, 107, 0, 0.28);
    color: var(--orange);
    font-family: var(--fb);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
}

.cnt-email:hover {
    background: rgba(255, 107, 0, 0.15);
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.cnt-copy-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.6rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dim);
    font-family: var(--fh);
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s;
}

.cnt-copy-btn:hover {
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--cyan);
    transform: translateY(-2px);
}

.copy-success-msg {
    margin-top: 1rem;
    font-family: var(--fm);
    font-size: 0.72rem;
    color: #22c55e;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-success-msg.show {
    opacity: 1;
}

/* ===== SYSTEM FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 2.5rem;
    position: relative;
    z-index: 10;
    background: transparent;
}

.ft-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ft-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ft-brand img {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.25);
}

.ft-name {
    font-family: var(--fh);
    font-size: 0.85rem;
    color: var(--dim);
    letter-spacing: 0.04em;
}

.ft-name strong {
    color: var(--orange);
    font-weight: 800;
}

.ft-tag-line {
    font-size: 0.75rem;
    color: var(--dim);
    opacity: 0.55;
    margin-top: 2px;
}

.ft-links {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
}

.ft-links a {
    font-size: 0.82rem;
    color: var(--dim);
    text-decoration: none;
    transition: color 0.2s;
}

.ft-links a:hover {
    color: var(--orange);
}

.ft-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.5rem;
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ft-bottom p {
    font-size: 0.75rem;
    color: var(--dim);
    opacity: 0.45;
}

.ft-legal {
    font-size: 0.62rem !important;
    max-width: 540px;
    line-height: 1.5;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 1080px) {
    .ht-nav-links {
        display: none;
    }
    .ht-menu-btn {
        display: flex;
    }
}

@media (max-width: 900px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
        padding-top: 60px;
    }
    .hero-left-col {
        align-items: center;
        text-align: center;
    }
    .hc-actions {
        justify-content: center;
    }
    .playground-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .planner-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .sec {
        padding: 80px 0;
    }
    .features-grid, .price-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .hc-title {
        font-size: 2.6rem;
    }
    .hc-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-phone-frame {
        width: 250px;
        height: 500px;
    }
    .pg-phone-mockup {
        width: 250px;
        height: 480px;
    }
}

/* =============================================
   HERO TABS SYSTEM & TUTORIAL IFRAME
   ============================================= */
.hero-tab-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-nav-tabs {
    display: inline-flex;
    background: rgba(2, 10, 25, 0.65);
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.hero-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--dim);
    padding: 10px 24px;
    font-family: var(--fh);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.hero-tab-btn svg {
    transition: transform 0.3s;
}

.hero-tab-btn:hover {
    color: var(--text);
}

.hero-tab-btn.active {
    background: linear-gradient(135deg, var(--orange), var(--rose));
    color: #010712;
    box-shadow: var(--neon-glow);
}

.hero-tab-btn.active svg {
    color: #010712;
}

.hero-tab-pane {
    display: none;
    width: 100%;
}

.hero-tab-pane.active {
    display: block;
    animation: heroPaneFadeIn 0.5s var(--ease) forwards;
}

@keyframes heroPaneFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tutorial-iframe-wrap {
    width: 100%;
    height: 680px;
    border-radius: 24px;
    border: 1.5px solid rgba(0, 240, 255, 0.12);
    background: #060a12;
    box-shadow: var(--glass-shadow), 0 0 40px rgba(0, 229, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.hero-tutorial-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 860px) {
    .hero-tutorial-iframe-wrap {
        height: 800px;
    }
}

@media (max-width: 580px) {
    .hero-tutorial-iframe-wrap {
        height: 700px;
    }
}

@media (max-width: 480px) {
    .hero-nav-tabs {
        width: 100%;
        border-radius: 12px;
        flex-direction: column;
        padding: 4px;
        gap: 4px;
    }
    .hero-tab-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

