/* SC TradeMasters — Cockpit HUD Components
   Angular geometry, amber instrument readouts, scan-line atmosphere.
   Built on Dark Forge foundations. */

/* ================================================================
   GLOBAL HUD ATMOSPHERE — scan lines + hexagonal grid
   ================================================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 200, 87, 0.008) 2px,
        rgba(255, 200, 87, 0.008) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

/* ================================================================
   DATA TICKER — scrolling telemetry bar at top
   ================================================================ */
.sctm-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: rgba(255, 200, 87, 0.04);
    border-bottom: 1px solid rgba(255, 200, 87, 0.1);
    overflow: hidden;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.sctm-ticker__track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
    font-family: var(--m-font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--m-amber);
    opacity: 0.5;
}

.sctm-ticker__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sctm-ticker__dot {
    width: 4px;
    height: 4px;
    background: var(--m-amber);
    opacity: 0.6;
}

/* ================================================================
   NAV — HUD command bar
   ================================================================ */
.sctm-nav {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 200, 87, 0.08);
}

.sctm-nav__inner {
    max-width: var(--m-page-width);
    margin: 0 auto;
    padding: 16px clamp(24px, 5vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sctm-nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sctm-nav__brand-name {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--m-amber);
    white-space: nowrap;
}

.sctm-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sctm-nav__link {
    font-family: var(--m-font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--m-text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.sctm-nav__link:hover {
    color: var(--m-amber);
}

.sctm-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: transparent;
    color: var(--m-amber);
    font-family: var(--m-font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid rgba(255, 200, 87, 0.3);
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.sctm-nav__cta:hover {
    background: rgba(255, 200, 87, 0.08);
    border-color: var(--m-amber);
    color: var(--m-amber);
}

/* ================================================================
   HERO — cockpit boot sequence
   ================================================================ */
.sctm-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px var(--m-gutter) 80px;
    position: relative;
    overflow: hidden;
    background: var(--m-void);
}

/* Hexagonal grid overlay */
.sctm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23ffc857' stroke-width='0.4' opacity='0.06'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23ffc857' stroke-width='0.4' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Amber radial glow — engine exhaust */
.sctm-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center bottom, rgba(255, 200, 87, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.sctm-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    animation: bootUp 1.2s ease;
}

.sctm-hero__mark {
    margin-bottom: 28px;
    animation: glowPulse 4s ease infinite;
    display: inline-block;
}

.sctm-hero__eyebrow {
    font-family: var(--m-font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--m-amber);
    margin-bottom: 24px;
    opacity: 0.7;
}

.sctm-hero__h1 {
    font-family: 'Rajdhani', var(--m-font);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: var(--m-text);
    letter-spacing: -1px;
    line-height: 1.05;
    margin: 0 0 24px 0;
}

.sctm-hero__sub {
    font-size: 17px;
    color: var(--m-text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.sctm-hero__features {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sctm-hero__feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: 'Rajdhani', var(--m-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--m-text-secondary);
    text-decoration: none;
    background: rgba(255, 200, 87, 0.04);
    border: 1px solid rgba(255, 200, 87, 0.1);
    transition: all 0.25s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.sctm-hero__feature-btn:hover {
    color: var(--m-amber);
    background: rgba(255, 200, 87, 0.08);
    border-color: rgba(255, 200, 87, 0.3);
    box-shadow: 0 0 20px rgba(255, 200, 87, 0.06);
}

.sctm-hero__feature-icon {
    color: var(--m-amber);
    opacity: 0.5;
    font-size: 10px;
    transition: opacity 0.25s;
}

.sctm-hero__feature-btn:hover .sctm-hero__feature-icon {
    opacity: 1;
}

/* Per-droid hover colours */
.sctm-hero__feature-btn--amber:hover {
    color: var(--m-amber);
    border-color: rgba(255, 200, 87, 0.3);
    background: rgba(255, 200, 87, 0.08);
}
.sctm-hero__feature-btn--amber .sctm-hero__feature-icon { color: var(--m-amber); }

.sctm-hero__feature-btn--emerald:hover {
    color: var(--m-emerald);
    border-color: rgba(0, 229, 160, 0.3);
    background: rgba(0, 229, 160, 0.08);
}
.sctm-hero__feature-btn--emerald .sctm-hero__feature-icon { color: var(--m-emerald); }

.sctm-hero__feature-btn--violet:hover {
    color: var(--m-violet);
    border-color: rgba(124, 92, 252, 0.3);
    background: rgba(124, 92, 252, 0.08);
}
.sctm-hero__feature-btn--violet .sctm-hero__feature-icon { color: var(--m-violet); }

.sctm-hero__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sctm-hero__divider {
    width: 200px;
    height: 1px;
    background: rgba(255, 200, 87, 0.12);
    margin: 24px auto;
}

/* Corner brackets — HUD targeting reticle */
.sctm-hero__reticle {
    position: absolute;
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16/9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.sctm-hero__reticle::before,
.sctm-hero__reticle::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 200, 87, 0.15);
    border-style: solid;
}

.sctm-hero__reticle::before {
    top: 0; left: 0;
    border-width: 1px 0 0 1px;
}

.sctm-hero__reticle::after {
    bottom: 0; right: 0;
    border-width: 0 1px 1px 0;
}

/* ================================================================
   BUTTONS — angular HUD style
   ================================================================ */
.sctm-btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Rajdhani', var(--m-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.sctm-btn--primary {
    background: var(--m-amber);
    color: var(--m-void);
}

.sctm-btn--primary:hover {
    background: #ffe08a;
    color: var(--m-void);
    box-shadow: 0 0 30px rgba(255, 200, 87, 0.2);
}

.sctm-btn--ghost {
    background: transparent;
    color: var(--m-text-secondary);
    border: 1px solid rgba(255, 200, 87, 0.2);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.sctm-btn--ghost:hover {
    border-color: rgba(255, 200, 87, 0.5);
    color: var(--m-amber);
    background: rgba(255, 200, 87, 0.04);
}

/* ================================================================
   SECTIONS
   ================================================================ */
.sctm-section {
    padding: 100px 0;
    position: relative;
}

.sctm-section--dark {
    background: rgba(26, 26, 46, 0.5);
}

.sctm-section--signup {
    background: var(--m-void);
    border-top: 1px solid rgba(255, 200, 87, 0.08);
}

.sctm-section__inner {
    max-width: var(--m-page-width);
    margin: 0 auto;
    padding: 0 var(--m-gutter);
}

.sctm-section__inner--narrow {
    max-width: 560px;
}

.sctm-section__header {
    margin-bottom: 56px;
}

.sctm-section__header--center {
    text-align: center;
}

.sctm-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--m-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m-amber);
    margin-bottom: 16px;
    opacity: 0.8;
}

.sctm-label::before {
    content: '//';
    opacity: 0.4;
}

.sctm-section__title {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--m-text);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 12px 0;
}

.sctm-section__sub {
    font-size: 16px;
    color: var(--m-text-secondary);
    line-height: 1.7;
    margin: 8px 0 0 0;
}

/* ================================================================
   HOW IT WORKS — HUD data panels
   ================================================================ */
.sctm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.sctm-step {
    background: rgba(26, 26, 46, 0.6);
    padding: 40px 32px;
    border: 1px solid rgba(255, 200, 87, 0.06);
    position: relative;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    display: flex;
    flex-direction: column;
}

.sctm-step:hover {
    border-color: rgba(255, 200, 87, 0.2);
    background: rgba(26, 26, 46, 0.8);
}

/* Corner indicator */
.sctm-step::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(255, 200, 87, 0.2);
    border-bottom: 1px solid rgba(255, 200, 87, 0.2);
}

.sctm-step__number {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--m-amber);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.sctm-step__title {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--m-text);
    margin: 0 0 10px 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.sctm-step__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sctm-step__header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sctm-step__header-text .sctm-label {
    margin-bottom: 0;
}

.sctm-step__header-text .sctm-step__title {
    margin: 0;
}

.sctm-step__desc {
    font-size: 14px;
    color: var(--m-text-secondary);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.sctm-step__link {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
    transition: opacity 0.2s ease;
    scroll-behavior: smooth;
}

.sctm-step__link:hover {
    opacity: 0.7;
}

/* ================================================================
   FLEET MOCKUP — ship computer display
   ================================================================ */
.sctm-mockup {
    background: var(--m-void);
    border: 1px solid rgba(255, 200, 87, 0.1);
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

/* Scan line effect across mockup */
.sctm-mockup::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 200, 87, 0.02) 50%,
        transparent 100%
    );
    height: 60px;
    animation: scanline 4s linear infinite;
    pointer-events: none;
    z-index: 2;
}

.sctm-mockup__bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 200, 87, 0.03);
    border-bottom: 1px solid rgba(255, 200, 87, 0.08);
}

.sctm-mockup__indicator {
    width: 6px;
    height: 6px;
    background: var(--m-amber);
    animation: blink 2s ease infinite;
}

.sctm-mockup__title {
    font-family: var(--m-font-mono);
    font-size: 11px;
    color: var(--m-amber);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
}

.sctm-mockup__status {
    margin-left: auto;
    font-family: var(--m-font-mono);
    font-size: 10px;
    color: #00e5a0;
    letter-spacing: 1px;
    animation: dataFlicker 5s ease infinite;
}

.sctm-mockup__body {
    padding: 24px;
    overflow-x: auto;
}

/* Fleet table — instrument readout style */
.sctm-fleet-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sctm-fleet-table th {
    text-align: left;
    font-family: var(--m-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m-amber);
    opacity: 0.5;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 200, 87, 0.08);
}

.sctm-fleet-table td {
    padding: 14px 16px;
    color: var(--m-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    font-family: var(--m-font-mono);
    font-size: 12px;
}

.sctm-fleet-table tr:last-child td {
    border-bottom: none;
}

.sctm-fleet-table tr:hover td {
    background: rgba(255, 200, 87, 0.02);
}

.sctm-fleet-table__ship {
    color: var(--m-text) !important;
    font-weight: 500;
    font-family: 'Rajdhani', var(--m-font) !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
}

.sctm-fleet-table__profit {
    color: #00e5a0 !important;
    font-weight: 500;
}

/* Status badges — cockpit indicators */
.sctm-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    font-family: var(--m-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sctm-status::before {
    content: '';
    width: 5px;
    height: 5px;
    display: inline-block;
}

.sctm-status--active {
    color: #00e5a0;
    background: rgba(0, 229, 160, 0.06);
}
.sctm-status--active::before { background: #00e5a0; animation: blink 1.5s ease infinite; }

.sctm-status--docked {
    color: var(--m-text-muted);
    background: rgba(160, 160, 184, 0.06);
}
.sctm-status--docked::before { background: var(--m-text-muted); }

.sctm-status--enroute {
    color: var(--m-amber);
    background: rgba(255, 200, 87, 0.06);
}
.sctm-status--enroute::before { background: var(--m-amber); animation: blink 2s ease infinite; }

/* ================================================================
   ROUTE PREVIEW — profit readout
   ================================================================ */
.sctm-route-meta {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 200, 87, 0.06);
}

.sctm-route-stat {
    text-align: center;
}

.sctm-route-stat__value {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--m-amber);
    line-height: 1;
}

.sctm-route-stat__value--green {
    color: #00e5a0;
}

.sctm-route-stat__label {
    font-family: var(--m-font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--m-text-muted);
    margin-top: 6px;
}

/* ================================================================
   WAITLIST SIGNUP — comms channel
   ================================================================ */
.sctm-signup {
    margin-top: 12px;
}

.sctm-signup__row {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.sctm-signup__input {
    flex: 1;
    min-width: 240px;
    padding: 14px 18px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 200, 87, 0.12);
    color: var(--m-text);
    font-family: var(--m-font-mono);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.sctm-signup__input:focus {
    border-color: rgba(255, 200, 87, 0.4);
    background: rgba(26, 26, 46, 0.8);
}

.sctm-signup__input::placeholder {
    color: var(--m-text-muted);
    font-family: var(--m-font-mono);
}

.sctm-signup__disclaimer {
    font-size: 11px;
    color: var(--m-text-dim);
    margin: 16px 0 0 0;
    font-family: var(--m-font-mono);
    letter-spacing: 0.5px;
}

/* ================================================================
   FOOTER — minimal telemetry bar
   ================================================================ */
.sctm-footer {
    background: var(--m-void);
    border-top: 1px solid rgba(255, 200, 87, 0.06);
    padding: 32px 0;
}

.sctm-footer__inner {
    max-width: var(--m-page-width);
    margin: 0 auto;
    padding: 0 var(--m-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sctm-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sctm-footer__brand-name {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--m-text-muted);
}

.sctm-footer__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--m-font-mono);
    font-size: 11px;
    color: var(--m-text-dim);
}

.sctm-footer__sep { color: var(--m-text-dim); }

.sctm-footer__link {
    color: var(--m-amber);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.sctm-footer__link:hover { opacity: 1; }

/* ================================================================
   ROADMAP — same base styles, HUD-ified
   ================================================================ */
.roadmap-badge {
    display: inline-block;
    padding: 3px 10px;
    font-family: var(--m-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.roadmap-badge--emerald {
    background: rgba(0, 229, 160, 0.08);
    color: #00e5a0;
}

.roadmap-badge--violet {
    background: rgba(124, 92, 252, 0.08);
    color: #7c5cfc;
}

.roadmap-badge--amber {
    background: rgba(255, 200, 87, 0.08);
    color: #ffc857;
}

.roadmap-card {
    display: block;
    background: rgba(26, 26, 46, 0.5);
    padding: 24px;
    border: 1px solid rgba(255, 200, 87, 0.06);
    text-decoration: none;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.roadmap-card:hover {
    border-color: rgba(255, 200, 87, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(255, 200, 87, 0.05);
}

.roadmap-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.roadmap-card__target {
    font-size: 11px;
    color: var(--m-text-muted);
    font-family: var(--m-font-mono);
    letter-spacing: 1px;
}

.roadmap-card__droid {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.roadmap-card__droid .sctm-droid-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.roadmap-card__droid .sctm-droid-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.roadmap-card__droid-name {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--m-text);
}

.roadmap-card__droid-role {
    font-size: 11px;
    color: var(--m-amber);
    font-weight: 500;
}

.roadmap-card__title {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 19px;
    font-weight: 600;
    color: var(--m-text);
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.roadmap-card__excerpt {
    font-size: 13px;
    color: var(--m-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.roadmap-section {
    max-width: var(--m-page-width);
    margin: 0 auto;
    padding: 100px var(--m-gutter);
}

.roadmap-section__header {
    margin-bottom: 40px;
}

.roadmap-section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--m-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--m-amber);
    margin-bottom: 12px;
    opacity: 0.8;
}

.roadmap-section__label::before {
    content: '//';
    opacity: 0.4;
}

.roadmap-section__title {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 28px;
    font-weight: 600;
    color: var(--m-text);
    margin: 8px 0 0 0;
    letter-spacing: 0.5px;
}

.roadmap-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2px;
}

/* ================================================================
   SPLIT MOCKUP LAYOUT — side by side panels
   ================================================================ */
.sctm-mockup-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.sctm-mockup__body--compact {
    padding: 16px 20px;
}

/* ================================================================
   MISSION COPILOT — contract list + route plan
   ================================================================ */
.sctm-mission {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sctm-mission:last-child { border-bottom: none; }

.sctm-mission--recommended {
    background: rgba(0, 229, 160, 0.02);
    margin: 0 -20px;
    padding: 14px 20px;
}

.sctm-mission__badge {
    font-family: var(--m-font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    white-space: nowrap;
}

.sctm-mission__badge--take {
    color: #00e5a0;
    background: rgba(0, 229, 160, 0.08);
}

.sctm-mission__badge--skip {
    color: var(--m-text-muted);
    background: rgba(160, 160, 184, 0.06);
}

.sctm-mission__badge--avoid {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.08);
}

.sctm-mission__info {
    flex: 1;
    min-width: 0;
}

.sctm-mission__name {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--m-text);
    letter-spacing: 0.3px;
}

.sctm-mission__detail {
    font-family: var(--m-font-mono);
    font-size: 10px;
    color: var(--m-text-muted);
    margin-top: 3px;
    letter-spacing: 0.5px;
}

.sctm-mission__payout {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--m-amber);
    white-space: nowrap;
}

.sctm-mission__unit {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.6;
}

/* Waypoint route plan */
.sctm-waypoint {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
}

.sctm-waypoint--active .sctm-waypoint__marker {
    color: #00e5a0;
    text-shadow: 0 0 8px rgba(0, 229, 160, 0.3);
}

.sctm-waypoint__marker {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--m-amber);
    opacity: 0.7;
    min-width: 24px;
}

.sctm-waypoint__info {
    flex: 1;
}

.sctm-waypoint__location {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--m-text);
    letter-spacing: 0.3px;
}

.sctm-waypoint__action {
    font-size: 12px;
    color: var(--m-text-secondary);
    margin-top: 3px;
    line-height: 1.5;
}

.sctm-waypoint__time {
    font-family: var(--m-font-mono);
    font-size: 11px;
    color: var(--m-text-muted);
    letter-spacing: 1px;
    white-space: nowrap;
}

.sctm-waypoint__connector {
    width: 1px;
    height: 16px;
    background: rgba(255, 200, 87, 0.12);
    margin-left: 11px;
}

/* ================================================================
   TRADE ADVISOR — buy/sell terminal
   ================================================================ */
.sctm-trade-row {
    display: grid;
    grid-template-columns: 48px 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sctm-trade-row:last-of-type { border-bottom: none; }

.sctm-trade-row__signal {
    font-family: var(--m-font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 3px 0;
    text-align: center;
}

.sctm-trade-row--buy .sctm-trade-row__signal { color: #00e5a0; }
.sctm-trade-row--sell .sctm-trade-row__signal { color: #00e5a0; }
.sctm-trade-row--hold .sctm-trade-row__signal { color: var(--m-amber); }
.sctm-trade-row--avoid .sctm-trade-row__signal { color: #ff6b6b; }

.sctm-trade-row__commodity {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--m-text);
    letter-spacing: 0.3px;
}

.sctm-trade-row__qty {
    font-family: var(--m-font-mono);
    font-size: 10px;
    color: var(--m-text-muted);
    font-weight: 400;
}

.sctm-trade-row__price {
    font-family: var(--m-font-mono);
    font-size: 13px;
    color: var(--m-text-secondary);
    text-align: right;
    white-space: nowrap;
}

.sctm-trade-row__unit {
    font-size: 9px;
    opacity: 0.5;
}

.sctm-trade-row__margin {
    font-family: var(--m-font-mono);
    font-size: 10px;
    color: var(--m-text-muted);
    letter-spacing: 0.3px;
    grid-column: 2 / -1;
    margin-top: -8px;
}

.sctm-trade-row__margin--up { color: rgba(0, 229, 160, 0.7); }
.sctm-trade-row__margin--down { color: rgba(255, 107, 107, 0.7); }

/* ================================================================
   INDUSTRIAL CONSULTANT — scan bars
   ================================================================ */
.sctm-scan-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 200, 87, 0.06);
}

.sctm-scan-header__type {
    font-family: 'Rajdhani', var(--m-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--m-text);
    letter-spacing: 0.5px;
}

.sctm-scan-header__mass {
    font-family: var(--m-font-mono);
    font-size: 11px;
    color: var(--m-text-muted);
    letter-spacing: 1px;
}

.sctm-scan-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sctm-scan-bar {
    display: grid;
    grid-template-columns: 1fr 140px 50px auto;
    gap: 12px;
    align-items: center;
}

.sctm-scan-bar__label {
    font-family: var(--m-font-mono);
    font-size: 11px;
    color: var(--m-text-secondary);
    letter-spacing: 0.5px;
}

.sctm-scan-bar__track {
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.sctm-scan-bar__fill {
    height: 100%;
    transition: width 1s ease;
}

.sctm-scan-bar__fill--gold  { background: var(--m-amber); }
.sctm-scan-bar__fill--amber { background: rgba(255, 200, 87, 0.6); }
.sctm-scan-bar__fill--dim   { background: rgba(255, 200, 87, 0.3); }
.sctm-scan-bar__fill--inert { background: rgba(160, 160, 184, 0.2); }

.sctm-scan-bar__pct {
    font-family: var(--m-font-mono);
    font-size: 11px;
    color: var(--m-text-muted);
    text-align: right;
}

.sctm-scan-bar__value {
    font-family: var(--m-font-mono);
    font-size: 11px;
    color: var(--m-text-secondary);
    text-align: right;
    white-space: nowrap;
}

.sctm-scan-bar__value--hot  { color: var(--m-amber); }
.sctm-scan-bar__value--cold { color: var(--m-text-muted); opacity: 0.5; }

/* ================================================================
   DROID AVATAR — placeholder gravatars
   ================================================================ */
.sctm-droid-avatar {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.sctm-droid-avatar--lg {
    width: 160px;
    height: 160px;
}

.sctm-droid-avatar--sm {
    width: 72px;
    height: 72px;
}

.sctm-droid-avatar--amber  { border-color: rgba(255, 200, 87, 0.15); background: rgba(255, 200, 87, 0.04); }
.sctm-droid-avatar--emerald { border-color: rgba(0, 229, 160, 0.15); background: rgba(0, 229, 160, 0.04); }
.sctm-droid-avatar--violet  { border-color: rgba(124, 92, 252, 0.15); background: rgba(124, 92, 252, 0.04); }

.sctm-droid-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Section header with avatar */
.sctm-section__header--droid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.sctm-section__header--droid .sctm-section__header-text {
    flex: 1;
    min-width: 0;
}

/* ================================================================
   DROID CHAT BUBBLE — inline personality peek
   ================================================================ */
.sctm-droid-chat {
    margin-top: 20px;
    padding: 14px 16px;
    border-left: 2px solid;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sctm-droid-chat__body {
    flex: 1;
    min-width: 0;
}

.sctm-droid-chat--amber  { border-color: rgba(255, 200, 87, 0.25); background: rgba(255, 200, 87, 0.02); }
.sctm-droid-chat--emerald { border-color: rgba(0, 229, 160, 0.25); background: rgba(0, 229, 160, 0.02); }
.sctm-droid-chat--violet  { border-color: rgba(124, 92, 252, 0.25); background: rgba(124, 92, 252, 0.02); }

.sctm-droid-chat__prompt {
    font-family: var(--m-font-mono);
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    opacity: 0.6;
}

.sctm-droid-chat--amber .sctm-droid-chat__prompt  { color: var(--m-amber); }
.sctm-droid-chat--emerald .sctm-droid-chat__prompt { color: var(--m-emerald); }
.sctm-droid-chat--violet .sctm-droid-chat__prompt  { color: var(--m-violet); }

.sctm-droid-chat__msg {
    font-size: 12px;
    color: var(--m-text-secondary);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* ================================================================
   DROID SECTION ACCENT — per-droid border tints on mockup panels
   ================================================================ */
.sctm-mockup--amber  { border-color: rgba(255, 200, 87, 0.12); }
.sctm-mockup--emerald { border-color: rgba(0, 229, 160, 0.12); }
.sctm-mockup--violet  { border-color: rgba(124, 92, 252, 0.12); }

.sctm-mockup--amber .sctm-mockup__bar  { border-bottom-color: rgba(255, 200, 87, 0.1); }
.sctm-mockup--emerald .sctm-mockup__bar { border-bottom-color: rgba(0, 229, 160, 0.1); }
.sctm-mockup--violet .sctm-mockup__bar  { border-bottom-color: rgba(124, 92, 252, 0.1); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .sctm-ticker { display: none; }
    .sctm-nav { top: 0; }

    .sctm-hero { padding: 100px var(--m-gutter) 60px; min-height: auto; }
    .sctm-hero__h1 { font-size: 32px; }
    .sctm-hero__reticle { display: none; }

    .sctm-steps { grid-template-columns: 1fr; }
    .sctm-mockup-split { grid-template-columns: 1fr; }
    .sctm-route-meta { flex-direction: column; gap: 16px; }
    .sctm-scan-bar { grid-template-columns: 1fr 80px 40px auto; gap: 8px; }
    .sctm-trade-row { grid-template-columns: 40px 1fr auto; }
    .sctm-trade-row__margin { grid-column: 2 / -1; }

    .sctm-nav__brand-name { font-size: 13px; letter-spacing: 2px; }
}
