/* ==========================================================================
   SPARKSY LANDING PAGE — ORGANIC KINETIC ECOSYSTEM DESIGN SYSTEM
   ========================================================================== */

/* Google Fonts Import: Outfit (Headings), Inter (Body), IBM Plex Mono (Specs) */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root[data-theme="dark"] {
    --bg-canvas: #090A0D;
    --bg-surface: #12141C;
    --bg-surface-elevated: #1B1E29;
    --bg-surface-inset: #060709;
    
    --border-color: #242735;
    --border-color-strong: #3A3F52;
    --border-color-accent: #FF3B00;

    --text-primary: #F4F5F8;
    --text-secondary: #9FA2B2;
    --text-muted: #5D6071;

    --color-signal-orange: #FF3B00;
    --color-signal-orange-glow: rgba(255, 59, 0, 0.4);
    --color-amber-led: #FFAA00;
    --color-amber-glow: rgba(255, 170, 0, 0.25);
    --color-sage-green: #22C55E;
    --color-sage-glow: rgba(34, 197, 94, 0.25);

    --shadow-tactile: 0 8px 0 #040406;
    --shadow-tactile-hover: 0 11px 0 #040406;
    --shadow-tactile-pressed: 0 3px 0 #040406;
    --shadow-glow-orange: 0 0 30px rgba(255, 59, 0, 0.4);
}

:root[data-theme="light"] {
    --bg-canvas: #F6F5F0;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #ECEAE3;
    --bg-surface-inset: #E3E1D8;

    --border-color: #D4D1C6;
    --border-color-strong: #111215;
    --border-color-accent: #FF3B00;

    --text-primary: #111215;
    --text-secondary: #565550;
    --text-muted: #8C8B84;

    --color-signal-orange: #FF3B00;
    --color-signal-orange-glow: rgba(255, 59, 0, 0.2);
    --color-amber-led: #D97706;
    --color-amber-glow: rgba(217, 119, 6, 0.2);
    --color-sage-green: #16A34A;
    --color-sage-glow: rgba(22, 163, 74, 0.2);

    --shadow-tactile: 0 6px 0 #111215;
    --shadow-tactile-hover: 0 9px 0 #111215;
    --shadow-tactile-pressed: 0 2px 0 #111215;
    --shadow-glow-orange: 0 0 22px rgba(255, 59, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

/* Base Resets & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* Typography Hierarchy */
.font-mono {
    font-family: 'IBM Plex Mono', monospace;
}

.headline-super {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.93;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.headline-super span.highlight-orange {
    color: var(--color-signal-orange);
    position: relative;
    display: inline-block;
}



.headline-section {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.05;
}

.subheadline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 660px;
    font-weight: 400;
    line-height: 1.5;
}

/* Metric Annotations */
.spec-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    width: fit-content;
    align-self: flex-start;
}

.spec-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-signal-orange);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-signal-orange);
}

/* Layout Containers */
.grid-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.grid-section {
    border-bottom: 1px solid var(--border-color);
    padding: 64px 0;
    position: relative;
}

/* Top Ticker Bar */
.ticker-strip {
    background: var(--bg-surface-inset);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: tickerScroll 35s linear infinite;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}

.ticker-item strong {
    color: var(--color-signal-orange);
}

.led-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-sage-green);
    box-shadow: var(--color-sage-glow);
    display: inline-block;
    animation: ledPulse 2s infinite alternate;
}

.led-indicator.orange {
    background: var(--color-signal-orange);
    box-shadow: var(--color-signal-orange-glow);
}

.led-indicator.amber {
    background: var(--color-amber-led);
    box-shadow: var(--color-amber-glow);
}

@keyframes ledPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; filter: brightness(1.3); }
}

/* Header & Control Bar */
.site-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
}

.brand-badge-square {
    width: 32px;
    height: 32px;
    background: var(--color-signal-orange);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: var(--shadow-tactile);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: var(--color-signal-orange);
}

/* Tactile Hardware Buttons */
.btn-tactile {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color-strong);
    background: var(--bg-surface);
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-tactile);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s ease, background-color 0.15s ease;
    text-decoration: none;
    position: relative;
    user-select: none;
}

.btn-tactile:hover {
    transform: translateY(-2px);
    border-color: var(--color-signal-orange);
    box-shadow: var(--shadow-tactile-hover);
}

.btn-tactile:active {
    transform: translateY(2px);
    box-shadow: var(--shadow-tactile-pressed);
}

.btn-tactile-primary {
    background: var(--color-signal-orange);
    color: #FFFFFF !important;
    border-color: var(--color-signal-orange);
    box-shadow: 0 5px 0 #B32900;
}

.btn-tactile-primary:hover {
    background: #FF4D1A;
    border-color: #FF4D1A;
    box-shadow: 0 7px 0 #B32900;
}

.btn-tactile-primary:active {
    box-shadow: 0 1px 0 #B32900;
}

/* Compact Cycle Theme Toggle Button */
.theme-cycle-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface-inset);
    color: var(--text-primary);
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
    user-select: none;
}

.theme-cycle-btn:hover {
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange);
}

.theme-cycle-btn .theme-mode-tag {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* HERO SECTION — UNIFIED ORGANIC KINETIC ECOSYSTEM */
.hero-organic-section {
    position: relative;
    padding: 80px 0 96px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Fluid Full-Width Background Interactive Canvas */
.hero-kinetic-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 1;
}

/* Hero Content Layer */
.hero-content-layer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content-layer {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.hero-main-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

/* Interactive Event Node Badges inside Fluid Hero */
.organic-badges-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.node-badge-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    background: rgba(19, 20, 27, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color-strong);
    border-radius: 30px;
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 0 rgba(0,0,0,0.15);
    user-select: none;
}

:root[data-theme="light"] .node-badge-chip {
    background: rgba(255, 255, 255, 0.85);
}

.node-badge-chip:hover {
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0,0,0,0.2);
}

.node-badge-chip.active {
    background: var(--color-signal-orange);
    color: #FFFFFF !important;
    border-color: var(--color-signal-orange);
    box-shadow: 0 4px 0 #B32900;
}

/* Embedded Waitlist Console Card (CONSISTENT TACTILE HARD SHADOW) */
.console-card {
    background: rgba(19, 20, 27, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-color-strong);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow-tactile);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s ease, border-color 0.15s ease;
}

:root[data-theme="light"] .console-card {
    background: rgba(255, 255, 255, 0.94);
}

/* Consistent Tactile Shadow on Hover — No Hard-to-Soft Jump! */
.console-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-signal-orange);
    box-shadow: var(--shadow-tactile-hover);
}

.console-card:active {
    transform: translateY(2px);
    box-shadow: var(--shadow-tactile-pressed);
}

.console-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-signal-orange), var(--color-amber-led), var(--color-sage-green));
}

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

.console-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.input-tactile {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 18px;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.15s ease;
}

.input-tactile:focus {
    border-color: var(--color-signal-orange);
    box-shadow: 0 0 0 2px var(--color-signal-orange-glow);
}

.role-knob-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.role-option-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 10px;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease;
    user-select: none;
}

.role-option-btn:hover {
    border-color: var(--text-muted);
}

.role-option-btn.active {
    background: var(--bg-surface-elevated);
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange);
    font-weight: 700;
}

/* Printed Pass Output Badge */
.unit-pass-output {
    margin-top: 16px;
    background: var(--bg-surface-inset);
    border: 1.5px dashed var(--color-signal-orange);
    border-radius: 6px;
    padding: 16px;
    display: none;
    animation: ticketPrint 0.5s ease-out forwards;
    position: relative;
}

.unit-pass-output.visible {
    display: block;
}

@keyframes ticketPrint {
    0% { opacity: 0; transform: translateY(-10px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.unit-pass-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.unit-pass-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-signal-orange);
}

.unit-pass-details {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.unit-stamp-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    border: 2px solid var(--color-sage-green);
    color: var(--color-sage-green);
    padding: 3px 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(-8deg);
    border-radius: 4px;
}

/* RECIPE CONTROL MATRIX & INTERACTIVE GRAPHIC MODULES */
.matrix-controls {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 6px 16px 6px;
    margin: -8px -6px 12px -6px;
    scrollbar-width: none;
}

.matrix-controls::-webkit-scrollbar {
    display: none;
}

.knob-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 16px;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
    box-shadow: 0 2px 0 transparent;
}

.knob-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 0 rgba(0,0,0,0.05);
}

.knob-btn.active {
    background: var(--color-signal-orange);
    color: #FFFFFF !important;
    border-color: var(--color-signal-orange);
    box-shadow: 0 4px 0 #B32900, 0 0 16px var(--color-signal-orange-glow);
    transform: translateY(-2px);
}

.knob-btn.prompt-anything-btn {
    border-style: dashed;
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange) !important;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.knob-btn.prompt-anything-btn:hover {
    background: var(--color-signal-orange-glow);
    color: var(--color-signal-orange) !important;
    border-color: var(--color-signal-orange);
    box-shadow: 0 4px 0 #B32900, 0 0 12px var(--color-signal-orange-glow);
    transform: translateY(-2px);
}

.recipe-display-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-strong);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--shadow-tactile);
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) {
    .recipe-display-card {
        grid-template-columns: 1fr 1fr;
    }
}

.recipe-info-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.recipe-preview-col {
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color-strong);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    height: 330px;
    box-sizing: border-box;
}

#recipe-items-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

#recipe-items-container::-webkit-scrollbar {
    width: 6px;
}

#recipe-items-container::-webkit-scrollbar-track {
    background: transparent;
}

#recipe-items-container::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 3px;
}

#recipe-items-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-muted);
}


.recipe-preview-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--color-signal-orange);
    border-radius: 12px 12px 0 0;
    opacity: 0.8;
}

.smart-memory-badge {
    background: linear-gradient(135deg, var(--bg-surface-elevated), var(--bg-surface));
    border: 1px solid var(--border-color-strong);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.smart-memory-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-signal-orange);
    box-shadow: 0 0 8px var(--color-signal-orange-glow);
}

/* INTERACTIVE VECTOR CARPOOL MAP GRAPHIC WIDGET */
.map-canvas-box {
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--color-signal-orange);
    color: var(--color-signal-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    z-index: 2;
}

.map-pin:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px var(--color-signal-orange-glow);
}

.map-pin.destination {
    border-color: var(--color-sage-green);
    color: var(--color-sage-green);
    background: var(--color-sage-glow);
}

.map-pin-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
    background: var(--bg-surface);
    padding: 1px 4px;
    border-radius: 2px;
    border: 1px solid var(--border-color);
}

/* SVG Route Vectors */
.route-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.route-path {
    stroke: var(--color-signal-orange);
    stroke-width: 2;
    stroke-dasharray: 6 4;
    animation: dashOffset 20s linear infinite;
}

@keyframes dashOffset {
    to { stroke-dashoffset: -100; }
}

/* INTERACTIVE SHIFT TIMELINE GRAPHIC WIDGET */
.timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-slot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.timeline-slot-row:hover {
    border-color: var(--color-signal-orange);
}

.timeline-slot-row.claimed {
    border-left: 3px solid var(--color-sage-green);
}

.timeline-slot-row.open {
    border-left: 3px solid var(--color-amber-led);
}

/* Timeline Axis Upgrades */
.timeline-grid {
    position: relative;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 4px;
    width: 2px;
    border-left: 2px dashed var(--border-color);
}

.timeline-slot-row {
    position: relative;
    border-left: 3px solid var(--border-color) !important;
}

.timeline-slot-row::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--color-amber-led);
    z-index: 2;
    transition: all 0.2s ease;
}

.timeline-slot-row.claimed {
    border-left: 3px solid var(--color-sage-green) !important;
}

.timeline-slot-row.claimed::before {
    border-color: var(--color-sage-green);
    background: var(--color-sage-green);
}

/* Group Purchase Size Selector Styles */
.purchase-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.purchase-interface {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.size-selector-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.size-btn-group {
    display: flex;
    gap: 6px;
}

.size-btn {
    flex: 1;
    padding: 8px;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.size-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.size-btn.active {
    background: var(--color-signal-orange);
    border-color: var(--color-signal-orange);
    color: #fff;
    box-shadow: 0 3px 6px var(--color-signal-orange-glow);
}

.purchase-action-btn {
    width: 100%;
    padding: 10px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color-strong);
    color: var(--text-primary);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.15s ease;
}

.purchase-action-btn:hover {
    background: var(--color-signal-orange);
    border-color: var(--color-signal-orange);
    color: #fff;
    box-shadow: 0 4px 12px var(--color-signal-orange-glow);
}

.purchase-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-surface-inset);
    color: var(--text-muted);
    border-color: var(--border-color);
    box-shadow: none;
}

.order-roster-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.order-roster-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-roster-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    transition: all 0.2s ease;
}

.order-size-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    background: var(--bg-surface-inset);
    color: var(--text-primary);
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

/* Personal Subscriptions Calendar UI Styles */
.calendar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    background: var(--bg-surface-inset);
    padding: 6px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.calendar-day-name {
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    color: var(--text-muted);
    font-weight: 700;
    padding-bottom: 1px;
    text-transform: uppercase;
}

.calendar-day {
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    background: var(--bg-surface);
    border: 1px solid transparent;
    transition: all 0.15s ease;
    position: relative;
    color: var(--text-secondary);
}

.calendar-day:hover {
    border-color: var(--border-color-strong);
    background: var(--bg-surface-elevated);
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
    pointer-events: none;
}

.calendar-day.has-sub {
    font-weight: 700;
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange);
    background: var(--color-signal-orange-glow);
}

.calendar-day.has-sub::after {
    content: '';
    position: absolute;
    bottom: 1px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--color-signal-orange);
}

.calendar-day.active {
    background: var(--color-signal-orange) !important;
    color: #FFFFFF !important;
    border-color: var(--color-signal-orange) !important;
}

.calendar-day.active::after {
    background: #FFFFFF !important;
}

.sub-detail-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 8px 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

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

.sub-detail-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.sub-detail-price {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-signal-orange);
}

.sub-detail-meta {
    font-size: 9px;
    color: var(--text-secondary);
}

.sub-pay-btn {
    width: 100%;
    padding: 5px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color-strong);
    color: var(--text-primary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono', monospace;
    transition: all 0.15s ease;
}

.sub-pay-btn:hover {
    background: var(--color-signal-orange);
    border-color: var(--color-signal-orange);
    color: #fff;
    box-shadow: 0 3px 6px var(--color-signal-orange-glow);
}

.sub-pay-btn.paid {
    background: var(--color-sage-glow);
    border-color: var(--color-sage-green);
    color: var(--color-sage-green);
    cursor: default;
    box-shadow: none !important;
}



/* INTERACTIVE GRAPHIC FLOW DIAGRAM */
.flow-diagram-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-strong);
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: var(--shadow-tactile);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flow-steps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
}

@media (min-width: 768px) {
    .flow-steps-wrapper {
        grid-template-columns: 1fr 1.2fr 1fr;
    }
}

.flow-step-box {
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.flow-step-box:hover, .flow-step-box.active {
    border-color: var(--color-signal-orange);
    box-shadow: 0 0 16px var(--color-signal-orange-glow);
    transform: translateY(-2px);
}

.flow-step-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-signal-orange);
}

.flow-step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.flow-step-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* FAQ ACCORDION */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.15s ease;
}

.faq-item:hover {
    border-color: var(--border-color-strong);
}

.faq-header {
    padding: 16px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-icon {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-signal-orange);
    transition: transform 0.2s ease;
}

.faq-body {
    padding: 0 20px 16px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FOOTER REDESIGN */
.site-footer {
    background: var(--bg-surface-inset);
    border-top: 1px solid var(--border-color-strong);
    padding: 64px 0 40px 0;
    margin-top: 80px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1.5fr;
        gap: 60px;
    }
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.footer-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: var(--color-signal-orange);
}

.footer-signup-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-signup-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color-strong);
    border-radius: 10px;
    padding: 24px;
    box-shadow: var(--shadow-tactile);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s ease, border-color 0.15s ease;
}

.footer-signup-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-signal-orange);
    box-shadow: var(--shadow-tactile-hover);
}

.footer-signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-signal-orange), var(--color-amber-led), var(--color-sage-green));
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-input-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 576px) {
    .footer-input-row {
        grid-template-columns: 1fr 1fr;
    }
}

.input-tactile-compact {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 14px;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.15s ease;
}

.input-tactile-compact:focus {
    border-color: var(--color-signal-orange);
    box-shadow: 0 0 0 2px var(--color-signal-orange-glow);
}

.footer-signup-success {
    background: var(--bg-surface-inset);
    border: 1.5px dashed var(--color-signal-orange);
    border-radius: 6px;
    padding: 16px;
    display: none;
    animation: ticketPrint 0.5s ease-out forwards;
    position: relative;
}

.footer-bottom {
    margin-top: 48px;
    border-top: 1px dashed var(--border-color);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Utility Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.4s ease-out;
}

/* AI Prompt Console Additions */
.blueprint-block {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 6px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.blueprint-block.animate-in {
    animation: blockSnap 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes blockSnap {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Interactive Preview & Tags */
.preview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    cursor: default;
    transition: all 0.2s ease;
}

.mockup-card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    cursor: pointer;
}

.mockup-card-item:hover {
    border-color: var(--color-signal-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.preview-item.interactive {
    cursor: pointer;
}

.preview-item.interactive:hover {
    border-color: var(--color-signal-orange);
    transform: translateX(4px);
}

.status-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-tag.needed {
    background: var(--bg-surface);
    border: 1px dashed var(--border-color-strong);
    color: var(--text-secondary);
}

.status-tag.claimed {
    background: var(--color-signal-orange-glow);
    border: 1px solid var(--color-signal-orange);
    color: var(--color-signal-orange);
}

/* SHOWCASE VIEWPORT & INTERACTIVE SLIDE EXPANSION */
.showcase-viewport {
    position: relative;
    width: 100%;
    min-height: 255px;
    overflow: hidden;
    margin-bottom: 12px;
}

.showcase-view-marquee {
    width: 100%;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.showcase-view-marquee.slide-out {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    display: none;
}

.showcase-view-expanded {
    width: 100%;
    min-height: 340px;
    background: var(--bg-canvas);
    border: 1px solid var(--border-color-strong);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideInFromRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 8px 24px rgba(0,0,0,0.06);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.back-to-samples-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.back-to-samples-btn:hover {
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange);
    transform: translateX(-2px);
}

.expanded-app-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.expanded-app-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
    padding-right: 2px;
}

.expanded-app-hero-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.expanded-app-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expanded-app-hero-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

/* MODULE SHOWCASE MARQUEE — MOBILE-FIRST CARDS */
.module-showcase-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 12px 0;
    margin-bottom: 14px;
    width: 100%;
    /* Fade on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: inline-flex;
    gap: 14px;
    padding-left: 14px;
    padding-right: 14px;
    animation: scrollMarquee 26s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Mobile-First Mini-App Screen Card */
.mobile-app-card {
    display: inline-flex;
    flex-direction: column;
    width: 220px;
    height: 235px;
    background: var(--bg-canvas);
    border: 1px solid var(--border-color-strong);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    user-select: none;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    overflow: hidden;
    white-space: normal;
}

.mobile-app-card:hover {
    border-color: var(--color-signal-orange);
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.12);
    transform: translateY(-3px);
}

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

.app-card-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.app-card-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 7px;
    background: var(--color-sage-green);
    color: #FFFFFF;
    border-radius: 10px;
}

.app-card-badge.accent {
    background: var(--color-signal-orange);
}

.app-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    flex: 1;
    overflow-y: auto;
}

.app-section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.app-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-primary);
}

.app-list-item.claimed {
    background: rgba(46, 125, 50, 0.05);
    border-color: rgba(46, 125, 50, 0.2);
}

.app-list-item .item-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.user-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    background: var(--bg-surface-inset);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
}

.claim-btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    background: var(--color-signal-orange-glow);
    border: 1px solid var(--color-signal-orange);
    color: var(--color-signal-orange);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.claim-btn:hover {
    background: var(--color-signal-orange);
    color: #FFFFFF;
}

.seat-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    color: var(--color-signal-orange);
}

.app-schedule-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    padding: 4px 6px;
    background: var(--bg-surface-inset);
    border-radius: 4px;
}

.time-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    color: var(--color-signal-orange);
    font-size: 9px;
}

.event-desc {
    color: var(--text-secondary);
    font-weight: 500;
}

.expense-summary-box {
    padding: 8px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 2px;
}

.expense-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}

.expense-amount .per-person {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

.expense-bar {
    width: 100%;
    height: 5px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}

.expense-fill {
    height: 100%;
    background: var(--color-sage-green);
    border-radius: 3px;
}

/* HERO PROMPT PRESET CHIPS */
.hero-prompt-chips {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
    margin-bottom: 10px;
}

.prompt-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 10px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.prompt-chip:hover {
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange);
    transform: translateY(-1px);
}

.prompt-chip.active {
    background: var(--color-signal-orange-glow);
    border-color: var(--color-signal-orange);
    color: var(--color-signal-orange);
    font-weight: 700;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7px)); }
}

