        /* Transcend Tools Light Theme */
        :root {
            /* Core colors from shared/styles.css */
            --bg-primary: #f9fafb;
            --bg-card: #ffffff;
            --bg-elevated: #f3f4f6;
            --border-color: #e5e7eb;
            --border-subtle: #e5e7eb;

            --text-primary: #111827;
            --text-secondary: #6b7280;
            --text-muted: #9ca3af;

            /* Transcend brand */
            --transcend-blue: #2c5aa0;
            --transcend-blue-dark: #1e4278;
            --transcend-light: #e8f0f8;

            /* Status colors */
            --gold: #d97706;
            --gold-glow: rgba(217, 119, 6, 0.1);
            --gold-bright: #f59e0b;

            --green: #27ae60;
            --green-light: #d5f4e6;
            --green-glow: rgba(39, 174, 96, 0.1);

            --red: #dc2626;
            --red-light: #fee2e2;

            --blue: #2c5aa0;
            --blue-glow: rgba(44, 90, 160, 0.1);

            --gray: #6b7280;
            --gray-glow: rgba(107, 114, 128, 0.08);

            /* Legacy variables for compatibility */
            --bg-deep: #1f2937;
            --border-medium: #d1d5db;

            /* Map route colors (keep these vivid for visibility) */
            --route-china: #dc2626;
            --route-japan: #27ae60;
            --route-korea: #2c5aa0;
        }

        /* Security: Hide body until auth completes */
        body {
            display: none;
            max-width: 100%;
            overflow-x: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
        }

        .auth-copy {
            margin-top: 12px;
        }

        .auth-copy-muted {
            color: var(--text-secondary);
        }

        .page-contract,
        .access-summary,
        .source-freshness {
            margin-bottom: 24px;
            border: 1px solid #dbe3ee;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(17, 24, 39, 0.05);
        }

        .page-contract {
            padding: 18px 20px;
            border-left: 4px solid var(--green);
        }

        .page-contract h2 {
            margin: 0 0 8px 0;
            color: var(--text-primary);
            font-size: 18px;
        }

        .page-contract p,
        .source-freshness p {
            margin: 0;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .access-summary {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            overflow: hidden;
        }

        .section-heading {
            margin: 0;
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 700;
        }

        .access-summary .section-heading {
            grid-column: 1 / -1;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .source-freshness .section-heading {
            margin-bottom: 8px;
        }

        .access-summary > div {
            padding: 14px 16px;
            border-right: 1px solid var(--border-subtle);
        }

        .access-summary > div:last-child {
            border-right: 0;
        }

        .access-label,
        .source-label {
            display: block;
            margin-bottom: 6px;
            color: var(--transcend-blue);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .source-freshness {
            padding: 14px 16px;
            border-left: 4px solid var(--gold-bright);
        }

        .footer-note {
            margin-top: 8px;
        }

        .comments-empty-help {
            color: var(--text-muted);
            font-size: 12px;
            margin-top: 8px;
        }

        .assumption-list {
            margin: 0;
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.8;
        }

        .assumption-list p {
            margin: 0 0 6px 0;
        }

        /* Leaflet map overrides - natural colors */
        #leaflet-map {
            z-index: 1 !important;
            background: #f5f5f5;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .leaflet-container {
            background: #f5f5f5 !important;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        .leaflet-popup-content-wrapper {
            background: white;
            color: var(--text-primary);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .leaflet-popup-tip {
            background: white;
        }
        .leaflet-control-zoom a {
            background: white !important;
            color: var(--text-primary) !important;
            border-color: var(--border-color) !important;
        }
        .leaflet-control-zoom a:hover {
            background: var(--bg-elevated) !important;
        }
        .leaflet-control-attribution {
            background: rgba(255, 255, 255, 0.9) !important;
            color: var(--text-muted) !important;
            font-size: 9px;
        }
        .leaflet-control-attribution a {
            color: var(--transcend-blue) !important;
        }

        .map-marker-dot {
            border: 2px solid #ffffff;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }

        .map-marker-large {
            width: 16px;
            height: 16px;
        }

        .map-marker-small {
            width: 12px;
            height: 12px;
        }

        .map-marker-china {
            background: #e57373;
        }

        .map-marker-hk {
            background: #ffb74d;
        }

        .map-marker-optional {
            background: #d4a84b;
        }

        .map-marker-japan {
            background: #81c784;
        }

        .map-marker-korea {
            background: #64b5f6;
        }

        .map-marker-default {
            background: var(--transcend-blue);
        }

        .trip-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 24px;
        }

        /* Header */
        .trip-hero {
            margin-bottom: 48px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--border-subtle);
        }

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

        .logo-section {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--transcend-blue) 0%, var(--transcend-blue-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: white;
        }

        .brand-text {
            font-size: 13px;
            color: var(--text-secondary);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        h1 {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--text-primary);
        }

        .header-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        .date-badge {
            background: var(--bg-elevated);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 12px 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Summary Stats Row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--transcend-blue), transparent);
            opacity: 0.8;
        }

        .stat-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .stat-value {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .stat-value .highlight {
            color: var(--transcend-blue);
        }

        .stat-sub {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Main Grid */
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 48px;
        }

        /* City Cards Section */
        .section-title {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-primary);
        }

        .section-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-subtle);
        }

        .cities-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .city-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 16px 20px;
            display: grid;
            grid-template-columns: 220px 1fr auto;
            align-items: center;
            gap: 16px;
            transition: all 0.2s ease;
        }

        .city-card:hover {
            border-color: var(--transcend-blue);
            transform: translateX(4px);
            box-shadow: 0 2px 8px rgba(44, 90, 160, 0.1);
        }

        .city-name {
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .city-flag {
            font-size: 18px;
        }

        .city-leads {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .lead-badge {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 500;
        }

        .lead-badge.high {
            background: var(--green-light);
            color: #166534;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .lead-badge.medium {
            background: var(--transcend-light);
            color: var(--transcend-blue-dark);
            border: 1px solid rgba(44, 90, 160, 0.2);
        }

        .lead-badge.low {
            background: var(--bg-elevated);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        /* Dinner Planning Styles */
        .dinner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }
        .dinner-city-card {
            background: var(--bg-elevated);
            border-radius: 12px;
            padding: 16px;
            border-left: 3px solid var(--city-accent);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        .dinner-city-card:hover:not(:has(.company-select-dropdown.open)) {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .dinner-city-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .dinner-city-flag {
            font-size: 18px;
        }
        .dinner-city-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            letter-spacing: -0.01em;
        }
        .dinner-slots {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .dinner-slot-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .slot-label {
            font-size: 11px;
            color: var(--text-muted);
            min-width: 54px;
            font-weight: 500;
        }
        /* Custom Select Component */
        .company-select {
            flex: 1;
            position: relative;
        }
        .company-select:has(.company-select-dropdown.open) {
            z-index: 1001;
        }
        .dinner-city-card:has(.company-select-dropdown.open) {
            z-index: 100;
        }
        .company-select-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 10px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            color: var(--text-secondary);
            transition: all 0.15s ease;
            min-height: 34px;
            gap: 6px;
        }
        .company-select-trigger:hover {
            border-color: var(--transcend-blue);
        }
        .company-select-trigger.has-value {
            color: var(--text-primary);
        }
        .company-select-trigger .priority-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .company-select-trigger .priority-dot.high { background: #22c55e; }
        .company-select-trigger .priority-dot.medium { background: var(--transcend-blue); }
        .company-select-trigger .priority-dot.low { background: #9ca3af; }
        .company-select-trigger .chevron {
            width: 14px;
            height: 14px;
            opacity: 0.5;
            flex-shrink: 0;
            transition: transform 0.15s ease;
        }
        .company-select-trigger.open .chevron {
            transform: rotate(180deg);
        }
        .company-select-trigger .selected-text {
            flex: 1;
            text-align: left;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .company-select-trigger .clear-btn {
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bg-elevated);
            color: var(--text-muted);
            font-size: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.15s ease;
        }
        .company-select-trigger .clear-btn:hover {
            background: var(--border-color);
            color: var(--text-primary);
        }
        .company-select-dropdown {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            z-index: 1000;
            max-height: 200px;
            overflow: hidden;
            display: none;
            flex-direction: column;
        }
        .company-select-dropdown.open {
            display: flex;
        }
        .company-select-search {
            padding: 8px;
            border-bottom: 1px solid var(--border-color);
            flex-shrink: 0;
        }
        .company-select-search input {
            width: 100%;
            padding: 6px 8px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background: var(--bg-elevated);
            color: var(--text-primary);
            font-size: 11px;
            outline: none;
        }
        .company-select-search input:focus {
            border-color: var(--transcend-blue);
        }
        .company-select-options {
            overflow-y: auto;
            flex: 1;
        }
        .company-option {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            cursor: pointer;
            font-size: 12px;
            color: var(--text-secondary);
            gap: 8px;
        }
        .company-option:hover:not(.disabled) {
            background: var(--bg-elevated);
        }
        .company-option.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .company-option .priority-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .company-option .priority-dot.high { background: #22c55e; }
        .company-option .priority-dot.medium { background: var(--transcend-blue); }
        .company-option .priority-dot.low { background: #9ca3af; }
        .company-option .company-name {
            flex: 1;
        }
        .company-option .assigned-badge {
            font-size: 9px;
            padding: 2px 5px;
            background: var(--bg-elevated);
            border-radius: 3px;
            color: var(--text-muted);
        }
        .company-option.hidden {
            display: none;
        }

        .company-tag {
            display: inline-block;
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 500;
            margin: 2px 4px 2px 0;
            background: var(--bg-elevated);
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .company-tag.high {
            background: var(--green-light);
            color: #166534;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .company-tag.medium {
            background: var(--transcend-light);
            color: var(--transcend-blue-dark);
            border: 1px solid rgba(44, 90, 160, 0.2);
        }

        .company-tag.low {
            background: var(--bg-elevated);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        .stop-companies {
            display: flex;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .city-score {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 14px;
            color: var(--text-muted);
            min-width: 60px;
            text-align: right;
        }

        .city-score span {
            color: var(--transcend-blue);
            font-weight: 600;
        }

        /* Route Map */
        .route-map {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            min-height: 420px;
        }

        .map-container {
            position: relative;
            width: 100%;
            height: 360px;
        }

        .map-bg {
            position: absolute;
            inset: 0;
            opacity: 0.15;
            background:
                radial-gradient(ellipse 80% 50% at 30% 40%, rgba(229, 115, 115, 0.3), transparent),
                radial-gradient(ellipse 60% 40% at 70% 35%, rgba(129, 199, 132, 0.3), transparent),
                radial-gradient(ellipse 50% 35% at 85% 50%, rgba(100, 181, 246, 0.3), transparent);
        }

        .city-node {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .city-node:hover {
            transform: scale(1.1);
        }

        .node-dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 3px solid;
            background: var(--bg-deep);
            position: relative;
            z-index: 2;
        }

        .node-dot.china { border-color: var(--route-china); }
        .node-dot.japan { border-color: var(--route-japan); }
        .node-dot.korea { border-color: var(--route-korea); }
        .node-dot.vietnam { border-color: var(--gold); }

        .node-dot::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            background: inherit;
            opacity: 0.2;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.5); opacity: 0; }
        }

        .node-label {
            font-size: 11px;
            font-weight: 600;
            margin-top: 6px;
            white-space: nowrap;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8);
        }

        .node-count {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: var(--text-muted);
        }

        /* Route Lines SVG */
        .route-lines {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .route-path {
            fill: none;
            stroke-width: 2;
            stroke-dasharray: 8 4;
            opacity: 0.6;
        }

        .route-path.week1 { stroke: var(--route-china); }
        .route-path.week2 { stroke: var(--route-japan); }

        /* Timeline Section */
        .timeline-section {
            grid-column: 1 / -1;
        }

        .timeline-container {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 32px;
        }

        .timeline-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .timeline-dates {
            display: grid;
            grid-template-columns: repeat(25, 1fr);
            gap: 2px;
            margin-bottom: 8px;
        }

        .date-cell {
            text-align: center;
            padding: 6px 4px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 11px;
            color: var(--text-secondary);
            line-height: 1.2;
        }

        .date-cell .day {
            font-size: 9px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .date-cell.weekend {
            background: rgba(107, 114, 128, 0.08);
            border-radius: 4px;
            color: var(--text-muted);
        }

        .date-cell.weekend .day {
            color: var(--gray);
        }

        .timeline-track {
            display: grid;
            grid-template-columns: repeat(25, 1fr);
            gap: 2px;
            margin-bottom: 16px;
        }

        .track-label {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .track-label .badge {
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 500;
        }

        .track-label .recommended {
            background: var(--green-light);
            color: #166534;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .track-cell {
            height: 40px;
            border-radius: 4px;
            position: relative;
        }

        .track-cell.shanghai {
            background: linear-gradient(135deg, rgba(229, 115, 115, 0.3), rgba(229, 115, 115, 0.15));
            border: 1px solid rgba(229, 115, 115, 0.4);
        }

        .track-cell.hangzhou {
            background: linear-gradient(135deg, rgba(229, 115, 115, 0.25), rgba(229, 115, 115, 0.1));
            border: 1px solid rgba(229, 115, 115, 0.3);
        }

        .track-cell.hongkong {
            background: linear-gradient(135deg, rgba(255, 183, 77, 0.3), rgba(255, 183, 77, 0.15));
            border: 1px solid rgba(255, 183, 77, 0.4);
        }

        .track-cell.tokyo {
            background: linear-gradient(135deg, rgba(129, 199, 132, 0.3), rgba(129, 199, 132, 0.15));
            border: 1px solid rgba(129, 199, 132, 0.4);
        }

        .track-cell.seoul {
            background: linear-gradient(135deg, rgba(100, 181, 246, 0.3), rgba(100, 181, 246, 0.15));
            border: 1px solid rgba(100, 181, 246, 0.4);
        }

        .track-cell.travel {
            background: linear-gradient(135deg, rgba(156, 163, 175, 0.3), rgba(156, 163, 175, 0.15));
            border: 1px solid rgba(156, 163, 175, 0.5);
        }

        .track-cell.acclimate {
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(167, 139, 250, 0.15));
            border: 1px solid rgba(167, 139, 250, 0.4);
        }

        .track-cell.empty {
            background: var(--bg-elevated);
            border: 1px dashed var(--border-subtle);
        }

        .cell-label {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Constraints Panel */
        .constraints-section {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
        }

        .constraints-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .constraint-card {
            background: var(--bg-elevated);
            border-radius: 10px;
            padding: 14px 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .constraint-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .constraint-icon.high {
            background: var(--green-light);
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

        .constraint-icon.medium {
            background: var(--transcend-light);
            border: 1px solid rgba(44, 90, 160, 0.2);
        }

        .constraint-company {
            font-weight: 600;
            font-size: 13px;
            margin-bottom: 2px;
        }

        .constraint-detail {
            font-size: 11px;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* Options Comparison */
        .options-section {
            margin-top: 48px;
        }

        .options-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .option-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 28px;
            position: relative;
            transition: all 0.3s ease;
        }

        .option-card.recommended {
            border-color: var(--gold);
            box-shadow: 0 0 40px var(--gold-glow), inset 0 1px 0 rgba(212, 168, 75, 0.2);
        }

        .option-card.recommended::before {
            content: '★ RECOMMENDED';
            position: absolute;
            top: -12px;
            left: 24px;
            background: linear-gradient(135deg, var(--gold), var(--gold-bright));
            color: var(--bg-deep);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.1em;
            padding: 6px 14px;
            border-radius: 6px;
        }

        .option-header {
            margin-bottom: 20px;
        }

        .option-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .option-dates {
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            color: var(--transcend-blue);
        }

        .option-week {
            margin-bottom: 20px;
        }

        .week-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .week-stops {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stop-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: var(--bg-elevated);
            border-radius: 8px;
        }

        .stop-dates {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: var(--text-muted);
            min-width: 70px;
        }

        .stop-city {
            font-weight: 600;
            font-size: 13px;
            flex: 1;
        }

        .stop-leads {
            display: flex;
            gap: 4px;
        }

        .stop-leads .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .stop-leads .dot.high { background: var(--green); }
        .stop-leads .dot.medium { background: var(--blue); }

        .option-summary {
            margin-top: 20px;
            padding-top: 16px;
            border-top: 1px solid var(--border-subtle);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 6px 0;
        }

        .summary-row .label {
            color: var(--text-secondary);
        }

        .summary-row .value {
            font-weight: 600;
        }

        .summary-row .value.success {
            color: var(--green);
        }

        .summary-row .value.warning {
            color: var(--gold);
        }

        /* Trade-off callout */
        .tradeoff {
            margin-top: 16px;
            padding: 12px 14px;
            background: rgba(229, 115, 115, 0.1);
            border: 1px solid rgba(229, 115, 115, 0.2);
            border-radius: 8px;
            font-size: 12px;
            color: #e57373;
        }

        /* Footer */
        .trip-legend-footer {
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 12px;
        }

        .legend {
            display: flex;
            gap: 20px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

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

        .legend-dot.high { background: var(--green); }

        /* Route toggle buttons */
        .toggle-btn {
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 500;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            background: transparent;
            color: var(--text-secondary);
            transition: all 0.2s;
        }

        .toggle-btn:hover {
            background: var(--bg-card);
        }

        .toggle-btn.active {
            background: var(--transcend-blue);
            color: white;
        }
        .legend-dot.medium { background: var(--blue); }
        .legend-dot.low { background: var(--gray); }

        /* Responsive */
        @media (max-width: 1200px) {
            .main-grid {
                grid-template-columns: 1fr;
            }

            .options-grid {
                grid-template-columns: 1fr;
            }

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

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

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .trip-container {
                padding: 20px 12px;
            }

            .header-top,
            .timeline-header {
                flex-direction: column;
                gap: 12px;
            }

            .access-summary {
                grid-template-columns: 1fr;
            }

            .access-summary > div {
                border-right: 0;
                border-bottom: 1px solid var(--border-subtle);
            }

            .access-summary > div:last-child {
                border-bottom: 0;
            }

            .stats-row {
                grid-template-columns: 1fr;
            }

            .constraints-grid {
                grid-template-columns: 1fr;
            }

            .city-card {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .timeline-container,
            .route-map,
            .option-card {
                padding: 16px;
            }

            .timeline-dates,
            .timeline-track {
                min-width: 760px;
            }

            .timeline-container {
                overflow-x: auto;
            }

            #commentsToggle.comments-toggle {
                right: 16px;
                bottom: 16px;
            }
        }

/* Generated from former inline styles during page-excellence cleanup. */
.trip-inline-001 { color: var(--text-secondary); }
.trip-inline-002 { color: var(--text-primary); margin-bottom: 16px; }
.trip-inline-003 { color: var(--text-secondary); margin-bottom: 24px; }
.trip-inline-004 { background: var(--gold); color: var(--bg-deep); padding: 12px 32px; font-size: 1rem; }
.trip-inline-005 { color: var(--text-secondary); margin-top: 12px; }
.trip-inline-006 { color: var(--text-muted); margin-top: 8px; font-size: 13px; }
.trip-inline-007 { font-size: 1.75rem; }
.trip-inline-008 { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.trip-inline-009 { font-size: 10px; color: var(--text-muted); margin-bottom: 16px; padding: 8px 12px; background: var(--bg-elevated); border-radius: 6px; }
.trip-inline-010 { color: #166534; }
.trip-inline-011 { color: var(--transcend-blue-dark); }
.trip-inline-012 { color: var(--gray); }
.trip-inline-013 { font-size: 11px; color: var(--text-muted); margin-left: 8px; }
.trip-inline-014 { border-left: 3px solid rgba(129, 199, 132, 0.6); }
.trip-inline-015 { border-left: 3px solid rgba(229, 115, 115, 0.6); }
.trip-inline-016 { border-left: 3px solid rgba(255, 183, 77, 0.6); }
.trip-inline-017 { font-size: 9px; color: var(--text-muted); margin-bottom: 6px; white-space: nowrap; }
.trip-inline-018 { font-size: 10px; color: var(--text-muted); }
.trip-inline-019 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.trip-inline-020 { margin-bottom: 0; }
.trip-inline-021 { display: flex; gap: 4px; background: var(--bg-elevated); padding: 4px; border-radius: 8px; }
.trip-inline-022 { height: 690px; border-radius: 12px; z-index: 1; }
.trip-inline-023 { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; font-size: 11px; color: var(--text-muted); }
.trip-inline-024 { display: inline-block; width: 12px; height: 3px; background: #e57373; margin-right: 6px; }
.trip-inline-025 { display: inline-block; width: 12px; height: 3px; background: #81c784; margin-right: 6px; }
.trip-inline-026 { display: inline-block; width: 12px; height: 3px; background: #64b5f6; margin-right: 6px; }
.trip-inline-027 { display: inline-block; width: 12px; height: 3px; background: #d4a84b; opacity: 0.5; margin-right: 6px; }
.trip-inline-028 { display: inline-block; width: 12px; height: 12px; background: linear-gradient(135deg, rgba(229, 115, 115, 0.3), rgba(229, 115, 115, 0.15)); border: 1px solid rgba(229, 115, 115, 0.4); border-radius: 3px; margin-right: 6px; }
.trip-inline-029 { display: inline-block; width: 12px; height: 12px; background: linear-gradient(135deg, rgba(129, 199, 132, 0.3), rgba(129, 199, 132, 0.15)); border: 1px solid rgba(129, 199, 132, 0.4); border-radius: 3px; margin-right: 6px; }
.trip-inline-030 { display: inline-block; width: 12px; height: 12px; background: linear-gradient(135deg, rgba(100, 181, 246, 0.3), rgba(100, 181, 246, 0.15)); border: 1px solid rgba(100, 181, 246, 0.4); border-radius: 3px; margin-right: 6px; }
.trip-inline-031 { display: inline-block; width: 12px; height: 12px; background: var(--bg-elevated); border: 1px dashed var(--border-subtle); border-radius: 3px; margin-right: 6px; }
.trip-inline-032 { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border-subtle); font-size: 11px; color: var(--text-secondary); }
.trip-inline-033 { margin-left: 8px; padding-left: 8px; border-left: 1px solid var(--border-subtle); }
.trip-inline-034 { margin-top: 16px; }
.trip-inline-035 { font-weight: 400; color: var(--text-muted); font-size: 11px; }
.trip-inline-036 { font-size: 1.125rem; }
.trip-inline-037 { margin-top: 32px; }
.trip-inline-038 { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
.trip-inline-039 { --city-accent: #e57373; }
.trip-inline-040 { --city-accent: #ffb74d; }
.trip-inline-041 { --city-accent: #64b5f6; }
.trip-inline-042 { --city-accent: #81c784; }
.trip-inline-043 { margin-top: 12px; padding: 12px 14px; background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 8px; }
.trip-inline-044 { font-size: 12px; font-weight: 600; color: #d97706; margin-bottom: 6px; }
.trip-inline-045 { font-size: 11px; color: var(--text-primary); }
.trip-inline-046 { margin-top: 12px; padding: 10px 12px; background: rgba(91, 141, 239, 0.1); border: 1px solid rgba(91, 141, 239, 0.2); border-radius: 8px; font-size: 11px; color: var(--blue); }
.trip-inline-047 { font-weight: 400; font-size: 12px; color: var(--text-muted); }
.trip-inline-048 { background: rgba(39, 174, 96, 0.1); border-color: rgba(39, 174, 96, 0.3); color: #166534; }
.trip-inline-049 { margin-top: 48px; }
.trip-inline-050 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.trip-inline-051 { font-weight: 600; margin-bottom: 12px; color: var(--text-primary); }
.trip-inline-052 { font-size: 13px; color: var(--text-secondary); margin: 0; padding-left: 20px; line-height: 1.8; }
.trip-inline-053 { overflow-x: auto; }
.trip-inline-054 { width: 100%; border-collapse: collapse; font-size: 12px; }
.trip-inline-055 { background: var(--bg-elevated); border-bottom: 2px solid var(--border-color); }
.trip-inline-056 { padding: 10px 12px; text-align: left; font-weight: 600; }
.trip-inline-057 { padding: 10px 12px; text-align: center; font-weight: 600; }
.trip-inline-058 { border-bottom: 1px solid var(--border-subtle); }
.trip-inline-059 { padding: 8px 12px; }
.trip-inline-060 { padding: 8px 12px; text-align: center; }
.trip-inline-061 { font-size: 10px; }
.trip-inline-062 { padding: 8px 12px; color: var(--text-secondary); }
.trip-inline-063 { font-size: 11px; color: var(--text-muted); margin-top: 16px; }
.trip-inline-064 { margin-top: 8px; }
.trip-inline-065 { font-size: 12px; margin-top: 8px; }
.trip-inline-066 { font-family: 'DM Sans', sans-serif; text-align: center; }
.trip-inline-067 { font-size: 14px; }
.trip-inline-068 { font-size: 12px; color: #666; }
.trip-inline-069 { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 11px; font-weight: 600; color: #1f2937; text-shadow: 0 1px 2px rgba(255,255,255,0.9), 0 0 4px rgba(255,255,255,0.8); white-space: nowrap; transform: translateY(12px); }
.trip-inline-070 { width: 18px; height: 18px; background: rgba(10, 12, 16, 0.9); border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; color: white; }
.trip-inline-071 { background: rgba(44, 90, 160, 0.9); padding: 4px 8px; border-radius: 4px; font-family: 'DM Sans', -apple-system, sans-serif; font-size: 10px; font-weight: 500; color: white; white-space: nowrap; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
