/* ============================================
     Industry: Motorcycle & Car Clubs
     Identity: fanned route cards, highway mile
     markers, dashed checkpoint lines — season
     poker run arc from staging to awards
     ============================================ */

  .crumb {
    padding: 20px 0 0;
    font-size: 13px; color: var(--fg-mute);
    display: flex; gap: 10px; align-items: center;
  }
  .crumb a { color: var(--fg-mute); }
  .crumb a:hover { color: var(--accent); }
  .crumb .sep { opacity: 0.4; }

  .mc-hero {
    padding: 56px 0 80px;
    position: relative;
  }
  .mc-hero-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  }
  @media (max-width: 980px) { .mc-hero-grid { grid-template-columns: 1fr; } }
  .industry-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 10px 5px 8px; border-radius: 999px;
    background: color-mix(in oklch, var(--accent) 12%, var(--bg-card));
    border: 1px solid color-mix(in oklch, var(--accent) 35%, var(--border));
    font-size: 11.5px; font-family: "Geist Mono", monospace; letter-spacing: 0.06em;
    color: var(--accent); margin-bottom: 24px;
  }
  .industry-tag::before {
    content: ""; display: inline-block; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
  }
  .mc-hero h1 {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.95; letter-spacing: -0.035em; font-weight: 600;
    margin: 0 0 24px;
  }
  .mc-hero h1 em {
    font-family: "Instrument Serif", serif;
    font-style: italic; font-weight: 400; letter-spacing: -0.02em;
    color: var(--accent);
  }
  .mc-hero .sub {
    font-size: 19px; color: var(--fg-dim);
    max-width: 540px; margin: 0 0 32px;
  }

  /* ─── FANNED ROUTE CARD STACK ─────────────────────── */
  .route-stack {
    position: relative;
    aspect-ratio: 1/1;
    display: grid; place-items: center;
  }
  .route-card {
    position: absolute;
    width: 60%;
    padding: 38px 22px 24px;
    background: oklch(0.97 0.008 75);
    border: 2px solid oklch(0.18 0.015 50);
    border-radius: 10px;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24);
    transition: transform 280ms ease, box-shadow 280ms ease;
    cursor: default;
    text-align: left;
  }
  .route-card .mm {
    position: absolute; top: -16px; left: 20px;
    min-width: 38px; padding: 5px 8px 6px;
    background: var(--accent);
    color: oklch(0.99 0 0);
    font-family: "Geist Mono", monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
    text-align: center;
    border-radius: 4px 4px 0 0;
    border: 2px solid oklch(0.18 0.015 50);
    border-bottom: none;
  }
  .route-card .mm::after {
    content: "";
    position: absolute; bottom: -6px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--accent);
  }
  .route-card .label {
    font-family: "Geist Mono", monospace; font-size: 10px;
    letter-spacing: 0.14em; text-transform: uppercase;
    opacity: 0.65; margin-bottom: 6px;
  }
  .route-card .name {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-size: clamp(20px, 2.4vw, 30px); line-height: 0.95;
    letter-spacing: -0.02em; margin-bottom: 14px;
  }
  .route-card .route-line {
    height: 0;
    border-top: 2px dashed color-mix(in oklch, var(--fg) 25%, var(--border));
    margin: 12px 0;
    position: relative;
  }
  .route-card .route-line::before,
  .route-card .route-line::after {
    content: "";
    position: absolute; top: -5px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid oklch(0.18 0.015 50);
  }
  .route-card .route-line::before { left: 0; }
  .route-card .route-line::after { right: 0; }
  .route-card .sub {
    font-size: 10.5px; opacity: 0.75;
    font-family: "Geist Mono", monospace;
  }
  .route-card.rc2 {
    transform: translate(-18%, -12%) rotate(-10deg);
    z-index: 1;
    background: oklch(0.94 0.012 75);
  }
  .route-card.rc3 {
    transform: translate(16%, 12%) rotate(9deg);
    z-index: 3;
    background: var(--accent);
    border-color: var(--accent);
    color: oklch(0.99 0 0);
  }
  .route-card.rc3 .route-line {
    border-top-color: color-mix(in oklch, oklch(0.99 0 0) 40%, transparent);
  }
  .route-card.rc3 .route-line::before,
  .route-card.rc3 .route-line::after {
    background: oklch(0.99 0 0);
    border-color: color-mix(in oklch, var(--accent) 70%, oklch(0.2 0.02 27));
  }
  .route-card.rc3 .mm {
    background: oklch(0.99 0 0);
    color: var(--accent);
    border-color: oklch(0.99 0 0);
  }
  .route-card.rc3 .mm::after { border-top-color: oklch(0.99 0 0); }
  .route-card.rc1 {
    z-index: 2;
    transform: rotate(2deg);
  }

  .route-stack:hover .route-card.rc2 {
    transform: translate(-20%, -16%) rotate(-12deg) translateY(-6px);
    box-shadow: 0 28px 60px -20px rgba(0,0,0,0.28);
  }
  .route-stack:hover .route-card.rc3 {
    transform: translate(18%, 8%) rotate(11deg) translateY(-10px);
    box-shadow: 0 32px 64px -20px rgba(0,0,0,0.32);
  }
  .route-stack:hover .route-card.rc1 {
    transform: rotate(3deg) translateY(-8px);
    box-shadow: 0 28px 60px -20px rgba(0,0,0,0.28);
  }

  /* ─── USE CASES ─────────────────────── */
  .use-cases {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  @media (max-width: 900px) { .use-cases { grid-template-columns: 1fr; } }
  .use-case {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    position: relative;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
  }
  .use-case:hover {
    background: var(--bg-card);
    border-color: color-mix(in oklch, var(--accent) 35%, var(--border));
  }
  .use-case .uc-mile {
    position: absolute; top: -6px; left: 32px;
    width: 28px; height: 44px;
    background: oklch(0.22 0.02 50);
    border-radius: 3px 3px 0 0;
    border: 2px solid oklch(0.18 0.015 50);
  }
  .use-case .uc-mile::before {
    content: attr(data-mile);
    position: absolute; inset: 6px 4px auto;
    background: var(--accent);
    color: oklch(0.99 0 0);
    font-family: "Geist Mono", monospace;
    font-size: 10px; font-weight: 500;
    text-align: center; padding: 3px 0;
    border-radius: 2px;
  }
  .use-case .uc-mile::after {
    content: "";
    position: absolute; bottom: -8px; left: 50%;
    transform: translateX(-50%);
    width: 34px; height: 8px;
    background: oklch(0.28 0.02 50);
    border-radius: 0 0 4px 4px;
  }
  .use-case .uc-num {
    font-family: "Geist Mono", monospace; font-size: 10.5px;
    letter-spacing: 0.16em; color: var(--accent);
    margin-bottom: 16px; padding-top: 32px;
  }
  .use-case h3 {
    font-size: 22px; letter-spacing: -0.02em;
    font-weight: 500; margin: 0 0 8px;
  }
  .use-case .platform {
    font-family: "Geist Mono", monospace; font-size: 11px;
    color: var(--fg-mute); margin-bottom: 18px;
  }
  .use-case p { color: var(--fg-dim); font-size: 14.5px; margin: 0 0 18px; }
  .use-case .uc-meta {
    display: flex; gap: 12px; padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 12px; color: var(--fg-mute);
  }
  .use-case .uc-meta .b { color: var(--fg); font-weight: 500; }

  /* ─── RIDE DAY TIMELINE ─────────────────────── */
  .ride-day {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    padding: 40px;
    overflow: hidden;
  }
  .rd-blocks {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    margin-top: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  @media (max-width: 800px) { .rd-blocks { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .rd-blocks { grid-template-columns: 1fr; } }
  .rd-block {
    padding: 22px 16px;
    border-right: 1px solid var(--border);
    text-align: center;
    transition: background 180ms ease;
  }
  .rd-block:last-child { border-right: 0; }
  @media (max-width: 800px) {
    .rd-block:nth-child(2n) { border-right: 0; }
    .rd-block { border-bottom: 1px solid var(--border); }
    .rd-block:nth-last-child(-n+1) { border-bottom: 0; }
  }
  .rd-block.active {
    background: color-mix(in oklch, var(--accent) 10%, var(--bg-card));
  }
  .rd-block .time {
    font-family: "Geist Mono", monospace; font-size: 10px;
    letter-spacing: 0.12em; color: var(--accent);
    margin-bottom: 8px;
  }
  .rd-block h4 {
    margin: 0 0 6px; font-size: 14px; font-weight: 500;
    letter-spacing: -0.01em;
  }
  .rd-block p {
    margin: 0; font-size: 11.5px; color: var(--fg-mute); line-height: 1.4;
  }
  .rd-block .stat {
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
    font-family: "Geist Mono", monospace; font-size: 10px;
    color: var(--fg-dim);
  }
  .rd-block.active .stat { color: var(--accent); }
  .rd-bar {
    position: relative; height: 8px; margin-top: 28px;
    background: var(--border); border-radius: 999px; overflow: hidden;
  }
  .rd-bar-fill {
    position: absolute; inset: 0; width: 62%;
    background: linear-gradient(90deg,
      color-mix(in oklch, var(--accent) 35%, var(--bg-card)),
      var(--accent));
    border-radius: 999px;
  }

  /* ─── IMPACT STATS ─────────────────────── */
  .rev-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--bg-elev);
  }
  @media (max-width: 980px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
  .rev-cell {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
  }
  .rev-cell:last-child { border-right: 0; }
  @media (max-width: 980px) {
    .rev-cell { border-right: 0; border-bottom: 1px solid var(--border); }
    .rev-cell:nth-child(2n) { border-right: 0; }
  }
  .rev-cell.lead {
    background:
      radial-gradient(400px 200px at 0% 100%, color-mix(in oklch, var(--accent) 18%, transparent), transparent 60%),
      var(--bg-elev);
  }
  .rev-cell h4 { margin: 0 0 10px; font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
  .rev-cell p { margin: 0; color: var(--fg-mute); font-size: 13px; }
  .rev-cell .v {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-size: clamp(40px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em;
    color: var(--accent);
  }
  .rev-cell .l { font-size: 13px; color: var(--fg-mute); margin-top: 8px; }

  /* ─── CLUB FEATURES ─────────────────────── */
  .mc-feats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--bg-elev);
  }
  @media (max-width: 800px) { .mc-feats { grid-template-columns: 1fr; } }
  .rf {
    padding: 28px 30px;
    display: flex; gap: 18px; align-items: start;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .rf:nth-child(2n) { border-right: 0; }
  .rf:nth-last-child(-n+2) { border-bottom: 0; }
  @media (max-width: 800px) {
    .rf { border-right: 0; }
    .rf:last-child { border-bottom: 0; }
  }
  .rf .icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: color-mix(in oklch, var(--accent) 12%, var(--bg-card));
    border: 1px solid color-mix(in oklch, var(--accent) 28%, var(--border));
    display: grid; place-items: center; flex-shrink: 0;
  }
  .rf h4 { margin: 0 0 4px; font-size: 16px; font-weight: 500; letter-spacing: -0.005em; }
  .rf p { margin: 0; color: var(--fg-mute); font-size: 13.5px; line-height: 1.5; }

  /* ─── CLUB QUOTE ─────────────────────── */
  .club-quote {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
    padding: 56px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
      radial-gradient(600px 300px at 100% 100%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 60%),
      var(--bg-elev);
  }
  @media (max-width: 900px) { .club-quote { grid-template-columns: 1fr; padding: 36px; } }
  .club-photo {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background:
      repeating-linear-gradient(
        -45deg,
        color-mix(in oklch, var(--accent) 6%, var(--bg-card)) 0 20px,
        var(--bg-card) 20px 40px
      );
    border: 1px solid var(--border);
    display: grid; place-items: center;
  }
  .club-photo::before {
    content: "[ road captain ]";
    font-family: "Geist Mono", monospace; font-size: 12px;
    color: var(--fg-mute);
    background: var(--bg); padding: 6px 12px; border-radius: 6px;
    border: 1px solid var(--border);
  }
  .club-quote .q {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-size: clamp(24px, 2.8vw, 34px); line-height: 1.2; letter-spacing: -0.02em;
    margin: 0 0 24px;
  }
  .club-quote .who {
    display: flex; gap: 14px; align-items: center;
    padding-top: 18px; border-top: 1px solid var(--border);
  }
  .club-quote .who .av {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), oklch(0.4 0.18 27));
  }

  .other-inds {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--bg-elev);
  }
  .oi-row {
    display: grid; grid-template-columns: 80px 1fr auto;
    gap: 24px; align-items: center;
    padding: 18px 28px;
    border-top: 1px solid var(--border);
    transition: 160ms ease;
    cursor: pointer; color: inherit; text-decoration: none;
  }
  .oi-row:first-child { border-top: 0; }
  .oi-row:hover { background: var(--bg-card); }
  .oi-row .id { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--accent); letter-spacing: 0.1em; }
  .oi-row .name { font-size: 17px; font-weight: 500; letter-spacing: -0.005em; }
  .oi-row .desc { color: var(--fg-mute); font-size: 13px; margin-top: 2px; }
  .oi-row .arrow { color: var(--fg-mute); transition: 160ms; }
  .oi-row:hover .arrow { color: var(--accent); transform: translateX(4px); }

  .club-cta {
    text-align: center;
    padding: 88px 32px;
    border-radius: var(--radius-lg);
    background:
      radial-gradient(600px 300px at 50% 0%, color-mix(in oklch, var(--accent) 22%, transparent), transparent 60%),
      var(--bg-elev);
    border: 1px solid var(--border);
  }
  .club-cta h2 {
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -0.035em; line-height: 1;
    margin: 0 0 20px;
  }
  .club-cta p { color: var(--fg-dim); font-size: 18px; max-width: 50ch; margin: 0 auto 32px; }

  @media (prefers-reduced-motion: reduce) {
    .route-card, .route-stack:hover .route-card { transition: none; }
    .route-stack:hover .route-card.rc2 { transform: translate(-18%, -12%) rotate(-10deg); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24); }
    .route-stack:hover .route-card.rc3 { transform: translate(16%, 12%) rotate(9deg); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24); }
    .route-stack:hover .route-card.rc1 { transform: rotate(2deg); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24); }
    .use-case, .oi-row, .rd-block { transition: none; }
  }
