:root {
      --bg: #050608;
      --accent: #ffb400;
      --accent-soft: #ffdd8a;
      --text: #f5f5f5;
      --muted: #9a9a9a;
      --card: #111319;
      --danger: #ff4b4b;
      --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --font-mono: "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-main);
      background: radial-gradient(circle at top, #20263a 0, #050608 55%);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1.5rem;
    }

    .shell {
      max-width: 960px;
      width: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.7));
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 24px 80px rgba(0,0,0,0.7);
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    @media (max-width: 800px) {
      .shell {
        grid-template-columns: 1fr;
      }
    }

    .left {
      padding: 2.5rem 2.5rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .right {
      background: radial-gradient(circle at 20% 0, #ffb40022 0, transparent 55%),
                  radial-gradient(circle at 80% 100%, #ff4b4b22 0, transparent 55%),
                  #050608;
      padding: 2.5rem 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      position: relative;
    }

    .logo-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 30% 0, #ffdd8a 0, #ffb400 40%, #7a3b00 100%);
      box-shadow: 0 0 18px rgba(255,180,0,0.6);
      position: relative;
      overflow: hidden;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      width: 130%;
      height: 130%;
      border-radius: 50%;
      border: 2px dashed rgba(0,0,0,0.35);
      box-sizing: border-box;
    }

    .logo-mark span {
      font-size: 1.4rem;
      font-weight: 900;
      letter-spacing: -0.05em;
      color: #1b1300;
    }

    .logo-text-main {
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.9rem;
    }

    .logo-text-sub {
      font-size: 0.75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    h1 {
      font-size: clamp(2.1rem, 3vw, 2.6rem);
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }

    h1 span.highlight {
      color: var(--accent);
      text-shadow: 0 0 18px rgba(255,180,0,0.6);
    }

    .tagline {
      color: var(--muted);
      font-size: 0.98rem;
      margin-bottom: 1.5rem;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.6);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-soft);
      margin-bottom: 0.75rem;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 10px rgba(255,180,0,0.8);
      animation: pulse 1.4s infinite ease-out;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      70% { transform: scale(1.9); opacity: 0; }
      100% { transform: scale(1.9); opacity: 0; }
    }

    .checklist {
      list-style: none;
      display: grid;
      gap: 0.5rem;
      margin-bottom: 1.75rem;
      font-size: 0.92rem;
    }

    .checklist li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .check-icon {
      width: 18px;
      height: 18px;
      border-radius: 6px;
      background: rgba(0,0,0,0.7);
      border: 1px solid rgba(255,255,255,0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: var(--accent-soft);
      flex-shrink: 0;
    }

    .check-text-strong {
      font-weight: 600;
    }

    .check-text-muted {
      color: var(--muted);
      font-size: 0.86rem;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .btn-primary {
      border: none;
      outline: none;
      cursor: pointer;
      padding: 0.7rem 1.4rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffb400, #ff7a00);
      color: #1b1300;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.6);
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
      box-shadow: 0 16px 40px rgba(0,0,0,0.75);
    }

    .btn-primary span.icon {
      font-size: 1.1rem;
    }

    .cta-note {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .eta-card {
      border-radius: 12px;
      background: rgba(0,0,0,0.6);
      border: 1px dashed rgba(255,255,255,0.18);
      padding: 0.9rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.85rem;
    }

    .eta-label {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.7rem;
      color: var(--muted);
      margin-bottom: 0.15rem;
    }

    .eta-main {
      font-weight: 600;
    }

    .eta-joke {
      color: var(--accent-soft);
      font-size: 0.8rem;
    }

    .eta-badge {
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(255,180,0,0.08);
      border: 1px solid rgba(255,180,0,0.4);
      font-size: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      white-space: nowrap;
    }

    .eta-badge span.dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    /* Right side: “images” & humor */

    .bike-card {
      background: rgba(0,0,0,0.7);
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.12);
      padding: 1rem;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 0.9rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 800px) {
      .bike-card {
        grid-template-columns: 1fr;
      }
    }

    .bike-photo-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: radial-gradient(circle at 30% 0, #ffb40033 0, transparent 55%),
                  radial-gradient(circle at 80% 100%, #ff4b4b33 0, transparent 55%),
                  #050608;
      border: 1px solid rgba(255,255,255,0.12);
      min-height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .bike-photo {
      width: 100%;
      max-width: 220px;
      filter: drop-shadow(0 18px 30px rgba(0,0,0,0.9));
      transform: translateY(4px);
    }

    .bike-photo-fallback {
      font-size: 0.8rem;
      color: var(--muted);
      text-align: center;
      padding: 1rem;
    }

    .bike-label {
      position: absolute;
      bottom: 0.6rem;
      left: 0.7rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.7);
      border: 1px solid rgba(255,255,255,0.18);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-soft);
    }

    .bike-badge {
      position: absolute;
      top: 0.6rem;
      right: 0.7rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(255,75,75,0.12);
      border: 1px solid rgba(255,75,75,0.6);
      font-size: 0.7rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      color: var(--danger);
    }

    .bike-badge span.dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--danger);
    }

    .bike-copy-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .bike-copy-text {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .bike-copy-meta {
      font-size: 0.78rem;
      color: var(--accent-soft);
      font-family: var(--font-mono);
    }

    .console-card {
      margin-top: 1.1rem;
      border-radius: 12px;
      background: #050608;
      border: 1px solid rgba(0,0,0,0.9);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
      padding: 0.9rem 1rem;
      font-family: var(--font-mono);
      font-size: 0.78rem;
      color: #c7d0ff;
      position: relative;
      overflow: hidden;
    }

    .console-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.5rem;
      color: var(--muted);
      font-size: 0.7rem;
    }

    .console-dots {
      display: flex;
      gap: 0.25rem;
    }

    .console-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #3a3a3a;
    }

    .console-dot.red { background: #ff4b4b; }
    .console-dot.yellow { background: #ffb400; }
    .console-dot.green { background: #4bff7a; }

    .console-body {
      white-space: pre-line;
      line-height: 1.4;
    }

    .console-cursor {
      display: inline-block;
      width: 7px;
      height: 1em;
      background: #c7d0ff;
      margin-left: 2px;
      animation: blink 1s steps(1) infinite;
      vertical-align: text-bottom;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      50.01%, 100% { opacity: 0; }
    }

    .footer-note {
      margin-top: auto;
      font-size: 0.75rem;
      color: var(--muted);
      text-align: right;
    }

    .footer-note strong {
      color: var(--accent-soft);
      font-weight: 600;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .bike-media {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .bike-badge-below {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(255,75,75,0.12);
      border: 1px solid rgba(255,75,75,0.6);
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      font-size: 0.7rem;
      color: var(--danger);
    }

    .bike-badge-below .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--danger);
    }

