/* --- Base Styles & Variables --- */
:root {
    --bg-dark: #050811;
    --bg-card: rgba(13, 20, 38, 0.65);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-cyan-glow: rgba(6, 182, 212, 0.15);
    
    /* Neon Colors */
    --color-primary: #06b6d4; /* Cyan */
    --color-primary-hover: #0891b2;
    --color-secondary: #2563eb; /* Blue */
    --color-green: #10b981; /* Emerald */
    --color-red: #ef4444; /* Crimson */
    --color-violet: #8b5cf6; /* Purple */
    --color-gold: #f59e0b; /* Amber */
    
    /* Text Colors */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #111827;
    
    /* Blurs & Transition */
    --card-blur: blur(20px);
    --transition-speed: 0.25s;
    --font-stack: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Max layout width */
    --max-content-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Base structural container */
.section-container {
    width: 100%;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation Bar --- */
.main-navbar {
    background-color: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover {
    transform: translateY(-1px);
}

.brand-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 0 rgba(6, 182, 212, 0);
}

.brand:hover .brand-logo-img {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 0 14px rgba(6, 182, 212, 0.5);
}

.brand-name {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 1.1;
    display: block;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.brand:hover .brand-name {
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.25);
}

.brand-text p {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.brand:hover .brand-text p {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 99px;
    transition: all 0.3s ease;
}

.mobile-only-menu-btn {
    display: none !important;
}

.btn-playstore-pill {
    display: flex;
    align-items: center;
    background-color: #03060d;
    border: 1px solid rgba(6, 182, 212, 0.45);
    border-radius: 99px;
    padding: 4px 14px 4px 5px;
    height: 44px;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.btn-playstore-pill:hover {
    background-color: rgba(6, 182, 212, 0.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.25);
}

.pill-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.pill-mid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
    line-height: 1.2;
}

.pill-subtitle {
    font-size: 7.5px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pill-title {
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
}

.pill-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 0 10px;
}

.pill-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.pill-stars {
    font-size: 7px;
    color: var(--color-gold);
    font-weight: 700;
}

.pill-stars .gold-text {
    color: #ffffff;
}

.pill-arrow {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 1px;
}

.btn-info-outline {
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-info-outline:hover {
    background: rgba(6, 182, 212, 0.15);
    border-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
    transform: translateY(-1.5px);
}

/* --- Marquee Scrolling Ticker --- */
.marquee-ticker {
    background-color: #03050a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
    gap: 24px;
}

.marquee-content span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.marquee-content span:nth-child(3n) { color: var(--color-secondary); }
.marquee-content span:nth-child(5n) { color: var(--color-green); }
.marquee-content span:nth-child(7n) { color: var(--color-violet); }
.marquee-content span:nth-child(9n) { color: var(--color-gold); }

.marquee-content .dot {
    color: rgba(255, 255, 255, 0.15);
}

@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 50% 10%, #0c182d 0%, #050811 80%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 40px;
}

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

.sub-badge {
    background-color: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-hero-primary {
    padding: 14px 28px;
    font-size: 14px;
}

.btn-hero-tg {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
}

.btn-hero-tg:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.live-pulse-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.live-pulse-status strong {
    color: #ffffff;
}

/* --- Virtual Phone Mockup --- */
.hero-phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background-color: #111827;
    border: 10px solid #1f2937;
    border-radius: 40px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
}

.phone-speaker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 18px;
    background-color: #1f2937;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

/* --- Embedded App Styles --- */
.app-container {
    width: 100%;
    height: auto;
    min-height: 100%;
    background-color: #080c14;
    display: flex;
    flex-direction: column;
    padding: 24px 12px 24px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.app-title-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.app-online-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 99px;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tabs-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 14px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.15);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

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

.period-selector-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 12px;
}

.period-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 2px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.period-btn.active {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--color-primary);
    color: #ffffff;
}

.glass-card {
    background-color: var(--bg-card);
    backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px;
    margin-top: 12px;
    position: relative;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-header-row h3 {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.prediction-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 12px;
}

.prediction-value strong {
    font-size: 20px;
    font-weight: 900;
}

.prediction-timer strong {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-gold);
}

.meta-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 10px;
}

.metric-item span {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
}

.metric-item strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
}

.badge {
    padding: 5px 9px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.badge-primary {
    background-color: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: #22d3ee;
}

.badge-purple {
    background-color: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #c084fc;
}

.badge-gold {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
}

.table-container {
    overflow-x: auto;
    margin-top: 4px;
}

.ledger-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    text-align: left;
}

.ledger-table th {
    color: var(--text-muted);
    font-weight: 700;
    padding: 6px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-transform: uppercase;
}

.ledger-table td {
    padding: 7px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    font-weight: 600;
}

.chip {
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
}

.chip-big { background: rgba(245, 158, 11, 0.12); color: var(--color-gold); border: 1px solid rgba(245, 158, 11, 0.15); }
.chip-small { background: rgba(6, 182, 212, 0.12); color: var(--color-primary); border: 1px solid rgba(6, 182, 212, 0.15); }
.chip-green { background: rgba(16, 185, 129, 0.12); color: var(--color-green); border: 1px solid rgba(16, 185, 129, 0.15); }
.chip-red { background: rgba(239, 68, 68, 0.12); color: var(--color-red); border: 1px solid rgba(239, 68, 68, 0.15); }
.chip-violet { background: rgba(139, 92, 246, 0.12); color: var(--color-violet); border: 1px solid rgba(139, 92, 246, 0.15); }

.draw-ball {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 9px;
    margin-right: 2px;
}

.btn-text-action {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.digit-sequence-display {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.digits-bubble-container {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: center;
    overflow: hidden;
}

.bubble {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 9px;
    flex-shrink: 0;
}

.keypad-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 14px;
}

.key-btn {
    border: 1px solid rgba(255, 255, 255, 0.03);
    height: 38px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.key-red { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%); }
.key-green { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.key-violet { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }

.btn-large-studio {
    padding: 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    width: 100%;
}

.btn-primary:disabled {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    pointer-events: none;
}

.studio-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.studio-metric-card {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px;
}

.studio-metric-card strong {
    display: block;
    font-size: 15px;
    font-weight: 850;
    margin: 2px 0 6px;
}

.progress-bar-container {
    height: 3px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 9px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--color-primary);
    transition: width 0.3s;
}

.latest-output-box {
    background: rgba(6, 182, 212, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 12px;
}

.pred-call-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.pred-call-row strong {
    font-size: 18px;
    font-weight: 900;
}

.pred-call-divider {
    color: var(--text-muted);
}

.studio-rationale-text {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.4;
}

.outcome-feedback-box {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 10px;
    text-align: center;
}

.outcome-feedback-box span {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.feedback-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 180px;
    margin: 0 auto;
}

.btn-feedback {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    color: #ffffff;
    height: 30px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.btn-win:hover { border-color: var(--color-green); color: var(--color-green); }
.btn-loss:hover { border-color: var(--color-red); color: var(--color-red); }

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.circular-chart-small {
    width: 48px;
    height: 48px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.03);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: var(--color-primary);
}

.percentage {
    fill: #ffffff;
    font-weight: 700;
    font-size: 8px;
    text-anchor: middle;
}

.stats-numbers-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.stat-number-item span {
    display: block;
    font-size: 8px;
    color: var(--text-muted);
}

.stat-number-item strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
}

/* --- Philosophy Section --- */
.philosophy-section {
    padding: 100px 0 60px;
    background-color: #050811;
    text-align: center;
    position: relative;
}

.section-tag-sub {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.philosophy-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.philosophy-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- How It Works Section (Vertical Timeline UI) --- */
.how-it-works-section {
    padding: 80px 0;
    background-color: #070c18;
}

.timeline-desktop-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    margin-top: 48px;
}

.timeline-steps-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
}

.timeline-steps-list::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0.3;
}

.timeline-step-item {
    display: flex;
    gap: 20px;
    position: relative;
}

.step-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(6, 182, 212, 0.12);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
    z-index: 2;
}

.step-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.step-details p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.glow-text {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.timeline-graphic-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-mockup-card {
    background-color: #0b1329;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mock-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mock-badge {
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--color-green);
    color: var(--color-green);
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
}

.mockup-digits-input {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.mockup-digits-input span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
}

.mockup-digits-sublabel {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 24px;
}

.mockup-output-hint {
    background-color: rgba(6, 182, 212, 0.03);
    border: 1px dashed rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 16px;
    font-size: 12px;
    color: #e5e7eb;
    line-height: 1.5;
    text-align: left;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.indicator-glow {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.timeline-cards-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.info-footer-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
}

.info-num {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.info-footer-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Numbered Features List --- */
.numbered-features-list {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.num-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
}

.num-feature-left {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 80%;
}

.num-feature-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-plat { background-color: rgba(6, 182, 212, 0.08); color: var(--color-primary); border: 1px solid rgba(6, 182, 212, 0.15); }
.icon-ai { background-color: rgba(139, 92, 246, 0.08); color: var(--color-violet); border: 1px solid rgba(139, 92, 246, 0.15); }
.icon-history { background-color: rgba(16, 185, 129, 0.08); color: var(--color-green); border: 1px solid rgba(16, 185, 129, 0.15); }
.icon-stats { background-color: rgba(245, 158, 11, 0.08); color: var(--color-gold); border: 1px solid rgba(245, 158, 11, 0.15); }
.icon-pro { background-color: rgba(59, 130, 246, 0.08); color: var(--color-secondary); border: 1px solid rgba(59, 130, 246, 0.15); }

.num-feature-desc h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.num-feature-desc p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.mini-tag-chips {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.tag-chip {
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.num-feature-index {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
}

/* --- Features Grid Section (Previous capability) --- */
.features-section {
    padding: 100px 0;
    background-color: #050811;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-top: 6px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Trust & Security Quadrant Grid --- */
.trust-section {
    padding: 100px 0;
    background-color: #070c18;
}

.trust-quadrant-wrapper {
    position: relative;
    max-width: 860px;
    margin: 50px auto 0;
}

.trust-center-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #070c18;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.35);
    z-index: 10;
    animation: animate-wingo-colors 6s linear infinite;
}

@keyframes animate-wingo-colors {
    0%, 100% {
        border-color: #22c55e; /* Green */
        color: #22c55e;
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
    }
    33% {
        border-color: #ef4444; /* Red */
        color: #ef4444;
        box-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
    }
    66% {
        border-color: #a855f7; /* Violet */
        color: #a855f7;
        box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
    }
}

.trust-quadrant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    overflow: hidden;
    background-color: rgba(13, 20, 38, 0.3);
}

.trust-card {
    padding: 48px;
    position: relative;
    transition: background-color var(--transition-speed);
}

.trust-card:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

/* Borders separating quadrants */
.trust-card.top-left {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: right;
}
.trust-card.top-left .trust-icon-box { margin-left: auto; }

.trust-card.top-right {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-card.bottom-left {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    text-align: right;
}
.trust-card.bottom-left .trust-icon-box { margin-left: auto; }

.trust-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Compatibility Section --- */
.compatibility-section {
    padding: 80px 0;
    background-color: #050811;
}

.compatibility-card {
    background-color: var(--bg-card);
    backdrop-filter: var(--card-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.compatibility-card h2 {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin: 8px 0 12px;
}

.platforms-chips-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.platform-chip {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    transition: all var(--transition-speed);
}

.platform-chip:hover {
    background-color: rgba(6, 182, 212, 0.1);
    border-color: var(--color-primary);
    transform: scale(1.05) !important;
    animation: none !important;
}

/* Green animations - 12.5s loops, 0.5s windows */
.platforms-chips-container span:nth-child(1) { animation: mercury-glow-green 12.5s infinite; animation-delay: 0s; }
.platforms-chips-container span:nth-child(4) { animation: mercury-glow-green 12.5s infinite; animation-delay: 1.5s; }
.platforms-chips-container span:nth-child(7) { animation: mercury-glow-green 12.5s infinite; animation-delay: 3s; }
.platforms-chips-container span:nth-child(10) { animation: mercury-glow-green 12.5s infinite; animation-delay: 4.5s; }
.platforms-chips-container span:nth-child(13) { animation: mercury-glow-green 12.5s infinite; animation-delay: 6s; }
.platforms-chips-container span:nth-child(16) { animation: mercury-glow-green 12.5s infinite; animation-delay: 7.5s; }
.platforms-chips-container span:nth-child(19) { animation: mercury-glow-green 12.5s infinite; animation-delay: 9s; }
.platforms-chips-container span:nth-child(22) { animation: mercury-glow-green 12.5s infinite; animation-delay: 10.5s; }
.platforms-chips-container span:nth-child(25) { animation: mercury-glow-green 12.5s infinite; animation-delay: 12s; }

/* Red animations - 12.5s loops, 0.5s windows */
.platforms-chips-container span:nth-child(2) { animation: mercury-glow-red 12.5s infinite; animation-delay: 0.5s; }
.platforms-chips-container span:nth-child(5) { animation: mercury-glow-red 12.5s infinite; animation-delay: 2s; }
.platforms-chips-container span:nth-child(8) { animation: mercury-glow-red 12.5s infinite; animation-delay: 3.5s; }
.platforms-chips-container span:nth-child(11) { animation: mercury-glow-red 12.5s infinite; animation-delay: 5s; }
.platforms-chips-container span:nth-child(14) { animation: mercury-glow-red 12.5s infinite; animation-delay: 6.5s; }
.platforms-chips-container span:nth-child(17) { animation: mercury-glow-red 12.5s infinite; animation-delay: 8s; }
.platforms-chips-container span:nth-child(20) { animation: mercury-glow-red 12.5s infinite; animation-delay: 9.5s; }
.platforms-chips-container span:nth-child(23) { animation: mercury-glow-red 12.5s infinite; animation-delay: 11s; }

/* Violet animations - 12.5s loops, 0.5s windows */
.platforms-chips-container span:nth-child(3) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 1s; }
.platforms-chips-container span:nth-child(6) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 2.5s; }
.platforms-chips-container span:nth-child(9) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 4s; }
.platforms-chips-container span:nth-child(12) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 5.5s; }
.platforms-chips-container span:nth-child(15) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 7s; }
.platforms-chips-container span:nth-child(18) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 8.5s; }
.platforms-chips-container span:nth-child(21) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 10s; }
.platforms-chips-container span:nth-child(24) { animation: mercury-glow-violet 12.5s infinite; animation-delay: 11.5s; }

@keyframes mercury-glow-green {
    0%, 100%, 4% {
        background-color: rgba(255, 255, 255, 0.03);
        border-color: var(--border-color);
        box-shadow: none;
        transform: scale(1);
    }
    2% {
        background-color: rgba(34, 197, 94, 0.12);
        border-color: #22c55e;
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.35);
        transform: scale(1.05);
    }
}

@keyframes mercury-glow-red {
    0%, 100%, 4% {
        background-color: rgba(255, 255, 255, 0.03);
        border-color: var(--border-color);
        box-shadow: none;
        transform: scale(1);
    }
    2% {
        background-color: rgba(239, 68, 68, 0.12);
        border-color: #ef4444;
        box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
        transform: scale(1.05);
    }
}

@keyframes mercury-glow-violet {
    0%, 100%, 4% {
        background-color: rgba(255, 255, 255, 0.03);
        border-color: var(--border-color);
        box-shadow: none;
        transform: scale(1);
    }
    2% {
        background-color: rgba(168, 85, 247, 0.12);
        border-color: #a855f7;
        box-shadow: 0 0 12px rgba(168, 85, 247, 0.35);
        transform: scale(1.05);
    }
}

/* --- Studio Link Section --- */
.studio-section {
    padding: 80px 0 40px;
    background-color: #050811;
    border-top: 1px solid var(--border-color);
}

/* --- Strategy Section --- */
.strategy-section {
    padding: 40px 0 80px;
    background-color: #050811;
}

.education-card-full {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.education-card-full h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.education-card-full .martingale-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.education-card-full .step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 20px 10px;
    border-radius: 16px;
}

.education-card-full .step-card strong {
    font-size: 18px;
    margin: 4px 0;
}

/* --- Download CTA Banner Section --- */
.download-cta-section {
    padding: 60px 0 100px;
    background-color: #050811;
}

.download-cta-card {
    background-color: #0a1122;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-cta-card h2 {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.download-cta-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.download-buttons-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-playstore {
    background-color: #03060d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color var(--transition-speed);
}

.btn-playstore:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.btn-icon-play {
    color: var(--color-primary);
}

.btn-text-play {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stars-rating {
    font-size: 9px;
    font-weight: 700;
    color: var(--color-gold);
}

.title-bold {
    font-size: 14px;
    font-weight: 800;
}

.btn-waitlist-ios {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 18px 24px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color var(--transition-speed);
}

.btn-waitlist-ios:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

/* --- Main Footer --- */
.main-footer {
    background-color: #03050a;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 0.6fr 0.6fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-brand-col h2 {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.brand-subdesc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.social-icon:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.footer-nav-col h3 {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-nav-col a {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color var(--transition-speed);
}

.footer-nav-col a:hover {
    color: var(--color-primary);
}

.footer-nav-col .email-link {
    color: var(--text-main);
    word-break: break-all;
}

.footer-disclaimer {
    grid-column: span 4;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-disclaimer p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
}

.footer-disclaimer .copyright {
    text-align: right;
    font-weight: 500;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .timeline-desktop-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-graphic-preview {
        order: -1;
    }
    
    .timeline-cards-footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .num-feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        position: relative;
    }
    
    .num-feature-left {
        max-width: 100%;
    }
    
    .num-feature-index {
        position: absolute;
        top: 20px;
        right: 0;
        font-size: 36px;
    }
    
    .trust-quadrant-wrapper {
        margin-top: 24px;
    }
    
    .trust-center-shield {
        display: none; /* Hide shield on tablets/mobiles to allow linear stack */
    }
    
    .trust-quadrant-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card, .trust-card.top-left, .trust-card.bottom-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        text-align: left;
        padding: 30px 24px;
    }
    
    .trust-card.top-left .trust-icon-box, .trust-card.bottom-left .trust-icon-box {
        margin-left: 0;
    }
    
    .trust-card:last-child {
        border-bottom: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social-icons {
        margin-bottom: 16px;
    }
    
    .footer-nav-col h3 {
        margin-bottom: 10px;
        margin-top: 8px;
    }
    
    .footer-nav-col a {
        margin-bottom: 6px;
    }
    
    .footer-disclaimer {
        grid-column: span 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-disclaimer .copyright {
        text-align: center;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay offsets for columns/rows */
.timeline-cards-footer-grid .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.timeline-cards-footer-grid .reveal-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.timeline-cards-footer-grid .reveal-on-scroll:nth-child(3) { transition-delay: 0.25s; }

.numbered-features-list .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.numbered-features-list .reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.numbered-features-list .reveal-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.numbered-features-list .reveal-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.numbered-features-list .reveal-on-scroll:nth-child(5) { transition-delay: 0.25s; }

.timeline-steps-list .reveal-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.timeline-steps-list .reveal-on-scroll:nth-child(2) { transition-delay: 0.12s; }
.timeline-steps-list .reveal-on-scroll:nth-child(3) { transition-delay: 0.19s; }
.timeline-steps-list .reveal-on-scroll:nth-child(4) { transition-delay: 0.26s; }

@media (max-width: 991px) {
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: rgba(5, 8, 17, 0.98);
        border-bottom: 1px solid var(--border-color);
        padding: 24px;
        gap: 16px;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 14px;
        font-weight: 700;
        padding: 12px 16px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0;
    }
    
    .nav-links a:not(.mobile-only-menu-btn):hover {
        background: rgba(6, 182, 212, 0.08);
        border-color: rgba(6, 182, 212, 0.3);
        color: var(--color-primary);
        padding-left: 20px;
    }
    
    .nav-links.active a {
        animation: menu-slide-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    
    .nav-links.active a:nth-child(1) { animation-delay: 0.05s; }
    .nav-links.active a:nth-child(2) { animation-delay: 0.1s; }
    .nav-links.active a:nth-child(3) { animation-delay: 0.15s; }
    .nav-links.active a:nth-child(4) { animation-delay: 0.2s; }
    .nav-links.active a:nth-child(5) { animation-delay: 0.25s; }
    .nav-links.active a:nth-child(6) { animation-delay: 0.3s; }
    .nav-links.active a:nth-child(7) { animation-delay: 0.35s; }
    
    @keyframes menu-slide-in {
        from {
            opacity: 0;
            transform: translateX(-15px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .mobile-only-menu-btn {
        display: flex !important;
        align-items: center;
        background-color: #03060d !important;
        border: 1px solid rgba(6, 182, 212, 0.45) !important;
        border-radius: 99px !important;
        padding: 4px 14px 4px 5px !important;
        height: 44px !important;
        width: 100% !important;
        margin-top: 10px;
        box-sizing: border-box;
        box-shadow: 0 4px 15px rgba(6, 182, 212, 0.15);
        opacity: 0;
    }
    
    .mobile-only-menu-btn:hover {
        background-color: rgba(6, 182, 212, 0.05) !important;
        border-color: var(--color-primary) !important;
        box-shadow: 0 0 12px rgba(6, 182, 212, 0.25) !important;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .philosophy-title {
        font-size: 32px;
    }
    
    .philosophy-subtitle {
        font-size: 15px;
    }
    
    .timeline-step-item {
        gap: 14px;
    }
    
    .step-badge-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    .timeline-steps-list::before {
        left: 16px;
    }
    
    .num-feature-desc h3 {
        font-size: 18px;
    }
    
    .download-cta-card {
        padding: 36px 20px;
    }
    
    .download-cta-card h2 {
        font-size: 24px;
    }
    
    .compatibility-card {
        padding: 24px 16px;
    }
    
    .compatibility-card h2 {
        font-size: 22px;
    }
    
    .platform-chip {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .education-card-full {
        padding: 24px 16px;
    }
    
    .education-card-full .martingale-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .education-card-full .step-card {
        padding: 14px 6px;
    }
    
    .education-card-full .step-card strong {
        font-size: 15px;
    }
}

/* Martingale Interactive Option Styles */
.strategy-options-control {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 24px 0 16px;
}

.control-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.start-amount-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.amount-chip {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.amount-chip:hover {
    background-color: rgba(6, 182, 212, 0.06);
    border-color: rgba(6, 182, 212, 0.3);
}

.amount-chip.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.custom-amount-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.custom-amount-wrapper input {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    color: #ffffff;
    border-radius: 99px;
    padding: 8px 30px 8px 16px;
    font-size: 13px;
    font-weight: 700;
    width: 110px;
    height: 38px;
    outline: none;
    transition: all var(--transition-speed);
}

.custom-amount-wrapper input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.15);
}

.custom-amount-wrapper .input-symbol {
    position: absolute;
    right: 14px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    pointer-events: none;
}

/* Mobile Screen Fit: Remove frame bezel & notch to expand app container to full screen */
@media (max-width: 500px) {
    .hero-phone-mockup {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .phone-frame {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 580px !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background-color: transparent !important;
    }
    
    .phone-speaker {
        display: none !important;
    }
    
    .app-container {
        padding: 16px 8px 16px !important;
        border-radius: 16px !important;
        border: 1px solid var(--border-color) !important;
        background: rgba(8, 12, 20, 0.95) !important;
    }
    
    .download-buttons-group {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 12px !important;
    }
    
    .download-buttons-group .btn-playstore,
    .download-buttons-group .google-play-pill-btn {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
    }
}

/* Guide Image Showcase Container */
.guide-image-container {
    background-color: rgba(13, 20, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 480px;
    width: 100%;
    gap: 4px;
}

@keyframes pulse-arrow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.15) translateX(2px);
        opacity: 1;
    }
}
@keyframes pulse-arrow-down {
    0%, 100% {
        transform: rotate(90deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(90deg) scale(1.15) translateY(2px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .guide-image-container {
        flex-direction: column !important;
        max-width: 320px !important;
        padding: 24px 16px !important;
        gap: 8px !important;
    }
    .mock-history-panel {
        width: 100% !important;
        max-width: 180px !important;
    }
    .mock-connection-arrow {
        margin: 2px 0 !important;
        animation: pulse-arrow-down 1.5s infinite !important;
    }
}

.guide-showcase-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    object-fit: contain;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Video Demo Section Styles */
.video-demo-section {
    padding: 80px 0;
    background-color: #070c18;
}

.video-player-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    background-color: rgba(13, 20, 38, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 40px;
    align-items: center;
    max-width: 900px;
    margin: 40px auto 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-phone-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-phone-frame {
    width: 280px;
    height: 560px;
    border: 8px solid #1f2937;
    border-radius: 36px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.demo-app-container {
    padding: 16px 10px 16px;
}

.demo-seq-card {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-keypad {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.demo-keypad .key-btn {
    height: 32px;
    font-size: 12px;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

/* Simulated finger tap effect */
.demo-keypad .key-btn.tap-active {
    transform: scale(0.9);
    filter: brightness(1.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.video-controls-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.controls-card {
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
}

.video-caption-box {
    min-height: 110px;
}

.step-num-label {
    font-size: 11px;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
}

.video-caption-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.video-caption-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.player-bar-container {
    margin: 24px 0 20px;
}

.player-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 700;
}

.player-progress-bar {
    height: 4px;
    background-color: rgba(255,255,255,0.06);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.player-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.player-buttons-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-player-action {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
    transition: all var(--transition-speed);
}

.btn-player-action:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.45);
}

.btn-player-action svg {
    display: block;
}

.demo-status-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .video-player-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    
    .video-phone-frame {
        width: 260px;
        height: 520px;
    }
}

/* Custom Google Play Rating Pill Button Styles */
.google-play-pill-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0b111e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 10px 20px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all var(--transition-speed);
    gap: 16px;
    width: 100%;
    max-width: 280px;
    justify-content: space-between;
    box-sizing: border-box;
}

.google-play-pill-btn * {
    text-decoration: none !important;
}

.google-play-pill-btn:hover {
    background-color: #111a2e;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
    transform: translateY(-2px);
}

.gp-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gp-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gp-sub {
    font-size: 8px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gp-main {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.gp-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.15);
}

.gp-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.gp-stars {
    color: #fbbc05;
    font-size: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.gp-rating {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.gp-label {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Demo App bubble size overrides to prevent wrapping on 10 digits */
.demo-seq-card {
    padding: 8px 6px !important;
}

.demo-seq-card .bubble {
    width: 15px !important;
    height: 15px !important;
    font-size: 8px !important;
    line-height: 15px !important;
}

.demo-seq-card .digits-bubble-container {
    gap: 3px !important;
}

/* Visibility toggling helper */
.hide {
    display: none !important;
}

/* Walkthrough animation active row highlight */
.mock-history-row.active-row {
    background-color: rgba(6, 182, 212, 0.18) !important;
    box-shadow: inset 2px 0 0 #06b6d4, 0 0 8px rgba(6, 182, 212, 0.2);
}

/* Floating Telegram Channel Badge styles */
.floating-tg-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(11, 17, 30, 0.85);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(6, 182, 212, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    max-width: 300px;
    animation: floating-bounce 3s ease-in-out infinite;
    transition: all var(--transition-speed);
}

.floating-tg-badge:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.close-tg-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.close-tg-badge:hover {
    color: #ffffff;
}

.badge-link-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.badge-tg-icon {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
    flex-shrink: 0;
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-subtitle {
    font-size: 8px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.1em;
}

.badge-title {
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
}

@keyframes floating-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 500px) {
    .floating-tg-badge {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

/* Modal Overlay styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity var(--transition-speed);
}

.modal-overlay.hide {
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.modal-card {
    max-width: 420px;
    width: 90%;
    padding: 32px 24px;
    border-radius: 24px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.1);
    position: relative;
    transform: scale(1);
    transition: transform var(--transition-speed);
    text-align: center;
    background: rgba(11, 17, 30, 0.95);
}

.modal-overlay.hide .modal-card {
    transform: scale(0.9);
}

.close-modal-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.close-modal-btn:hover {
    color: #ffffff;
}

.modal-header {
    margin-bottom: 16px;
}

.modal-sub {
    font-size: 9px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    margin-top: 4px;
}

.modal-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none !important;
}

.secondary-action-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #ffffff;
}

.secondary-action-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Alert Notification styles */
.copy-alert {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #06b6d4;
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 99px;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
    z-index: 100001;
    pointer-events: none;
    transition: opacity 0.3s;
}

.copy-alert.hide {
    opacity: 0;
}

@media (max-width: 480px) {
    .modal-actions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Custom Telegram Pill Button Styles */
.telegram-pill-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0b111e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 10px 20px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all var(--transition-speed);
    gap: 16px;
    width: 100%;
    max-width: 280px;
    justify-content: space-between;
    box-sizing: border-box;
}

.telegram-pill-btn * {
    text-decoration: none !important;
}

.telegram-pill-btn:hover {
    background-color: #111a2e;
    border-color: #229ED9; /* Telegram Blue color */
    box-shadow: 0 0 20px rgba(34, 158, 217, 0.25);
    transform: translateY(-2px);
}

.tg-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tg-icon-circle {
    width: 28px;
    height: 28px;
    color: #229ED9; /* Telegram Blue icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tg-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tg-sub {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

.tg-main {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.tg-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.15);
}

.tg-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tg-stars {
    color: #229ED9;
    font-size: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.tg-rating {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.tg-label {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Custom WhatsApp Pill Button Styles */
.whatsapp-pill-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0b111e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 10px 20px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all var(--transition-speed);
    gap: 16px;
    width: 100%;
    max-width: 280px;
    justify-content: space-between;
    box-sizing: border-box;
}

.whatsapp-pill-btn * {
    text-decoration: none !important;
}

.whatsapp-pill-btn:hover {
    background-color: #111a2e;
    border-color: #25D366; /* WhatsApp Green color */
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.wa-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-icon-circle {
    width: 28px;
    height: 28px;
    color: #25D366; /* WhatsApp Green icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-sub {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

.wa-main {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.wa-divider {
    width: 1px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.15);
}

.wa-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wa-stars {
    color: #25D366;
    font-size: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.wa-rating {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.wa-label {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Symmetrical stack for hero CTA buttons on mobile */
@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
    
    .hero-cta-group .google-play-pill-btn,
    .hero-cta-group .telegram-pill-btn,
    .hero-cta-group .whatsapp-pill-btn {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: space-between !important;
    }
}

/* App Header Game Dropdown select styles */
.app-selector-container {
    display: inline-flex;
    align-items: center;
}

.app-game-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Outfit', sans-serif;
    transition: all var(--transition-speed);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 22px;
}

.app-game-select:hover, .app-game-select:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.12);
}

.app-game-select option {
    background: #0b111e;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
}
