:root {
      --bg: #0b0d10;
      --bg-alt: #151a20;
      --ink: #f4f2ed;
      --muted: #b9b3a9;
      --accent: #f04a3a;
      --accent-2: #f7c548;
      --line: rgba(244, 242, 237, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: radial-gradient(circle at 20% 20%, rgba(240, 74, 58, 0.2), transparent 45%),
      radial-gradient(circle at 80% 0%, rgba(247, 197, 72, 0.18), transparent 40%),
      linear-gradient(180deg, #0b0d10 0%, #0f1217 50%, #0b0d10 100%);
      color: var(--ink);
      font-family: "Impact", "Haettenschweiler", "Arial Narrow", sans-serif;
      letter-spacing: 0.4px;
    }

    .wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px 64px;
    }

    header {
      padding: 28px 0 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      position: relative;
    }

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

    .logo-link {
      display: inline-flex;
      align-items: center;
      color: inherit;
      text-decoration: none;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px 2px 12px 2px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      display: grid;
      place-items: center;
      font-size: 20px;
      color: #111;
    }

    nav {
      display: flex;
      gap: 18px;
      font-size: 14px;
      text-transform: uppercase;
    }

    .mobile-quick-nav {
      display: none;
      width: auto;
      margin-left: auto;
      justify-content: flex-end;
    }

    .mobile-menu-toggle {
      flex: 0 0 auto;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: var(--ink);
      font-size: 20px;
      line-height: 1;
      display: inline-grid;
      place-items: center;
      cursor: pointer;
    }

    .mobile-menu-panel {
      display: none;
    }

    nav a {
      color: var(--muted);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      transition: color 0.2s ease;
    }

    .home-link {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid var(--line);
      display: inline-grid;
      place-items: center;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.03);
      flex: 0 0 32px;
      transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .home-link svg {
      width: 16px;
      height: 16px;
      display: block;
    }

    nav a:hover {
      color: var(--ink);
    }

    .home-link:hover,
    .home-link:focus-visible {
      transform: translateY(-1px);
      color: var(--ink);
      border-color: rgba(240, 74, 58, 0.65);
    }

    .floating-home {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 1px solid rgba(240, 74, 58, 0.55);
      background: rgba(11, 13, 16, 0.85);
      color: var(--ink);
      display: grid;
      place-items: center;
      z-index: 1300;
      box-shadow: 0 14px 28px -16px rgba(0, 0, 0, 0.8);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .floating-home svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .floating-home:hover,
    .floating-home:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(247, 197, 72, 0.75);
      box-shadow: 0 18px 32px -18px rgba(240, 74, 58, 0.6);
    }

    .hero {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      padding: 48px 0 24px;
      align-items: center;
    }

    .pilots-entry {
      margin: 10px 0 6px;
      padding: 20px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: linear-gradient(130deg, rgba(240, 74, 58, 0.14), rgba(247, 197, 72, 0.1));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .pilots-entry h2 {
      margin: 0 0 8px;
      font-size: 24px;
      text-transform: uppercase;
    }

    .pilots-entry p {
      margin: 0;
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      color: var(--muted);
    }

    .pilots-entry-cta {
      flex: 0 0 auto;
    }

    .hero h1 {
      font-size: clamp(44px, 8vw, 84px);
      line-height: 0.95;
      margin: 0 0 12px;
    }

    .hero p {
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      font-size: 18px;
      line-height: 1.6;
      color: var(--muted);
      margin: 0 0 24px;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 999px;
      background: var(--accent);
      color: #111;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 1px;
      box-shadow: 0 20px 40px rgba(240, 74, 58, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .cta-group {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .social-link {
      height: 48px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 18px;
      border: 1px solid rgba(240, 74, 58, 0.4);
      color: var(--ink);
      background: rgba(240, 74, 58, 0.12);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1px;
    }

    .social-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(240, 74, 58, 0.25);
      border-color: rgba(240, 74, 58, 0.7);
    }

    .social-link svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 50px rgba(240, 74, 58, 0.35);
    }

    .hero-card {
      position: relative;
      background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 28px;
      overflow: hidden;
    }

    .hero-card h2 {
      margin: 0 0 16px;
      font-size: 22px;
      text-transform: uppercase;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .stat {
      display: block;
      padding: 16px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(15, 18, 23, 0.7);
      text-transform: uppercase;
      font-size: 12px;
      letter-spacing: 1px;
      text-decoration: none;
      color: var(--ink);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .stat span {
      display: block;
      font-size: 18px;
      color: var(--accent-2);
      margin-top: 6px;
    }

    .stat:hover,
    .stat:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(240, 74, 58, 0.7);
      box-shadow: 0 14px 24px -18px rgba(240, 74, 58, 0.55);
    }

    .section-title {
      font-size: 28px;
      text-transform: uppercase;
      margin: 64px 0 20px;
    }

    .fleet {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
    }

    .fleet-focus-overlay {
      position: fixed;
      inset: 0;
      z-index: 1200;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(3, 4, 6, 0.8);
      backdrop-filter: blur(8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                  visibility 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fleet-focus-overlay.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .fleet-focus-card {
      position: relative;
      width: min(980px, 96vw);
      max-height: 92vh;
      overflow: auto;
      border-radius: 26px;
      border: 1px solid rgba(240, 74, 58, 0.75);
      background: linear-gradient(155deg, rgba(15, 18, 23, 0.98), rgba(11, 13, 16, 0.98));
      box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.86),
        0 0 0 1px rgba(247, 197, 72, 0.28);
      transform: translateY(34px) scale(0.955);
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fleet-focus-overlay.is-visible .fleet-focus-card {
      transform: translateY(0) scale(1);
    }

    .fleet-focus-media {
      width: 100%;
      height: clamp(220px, 56vh, 460px);
      object-fit: cover;
      object-position: center;
      display: block;
      background: #0b0d10;
      opacity: 1;
      transition: opacity 0.32s ease;
    }

    .fleet-focus-media.is-fading {
      opacity: 0.4;
    }

    .fleet-focus-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(244, 242, 237, 0.24);
      background: rgba(11, 13, 16, 0.85);
      color: var(--ink);
      font-size: 26px;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
    }

    .fleet-focus-control {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(244, 242, 237, 0.3);
      background: rgba(11, 13, 16, 0.78);
      color: var(--ink);
      font-size: 22px;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      z-index: 3;
    }

    .fleet-focus-control.prev { left: 14px; }
    .fleet-focus-control.next { right: 14px; }

    .fleet-focus-dots {
      position: absolute;
      left: 50%;
      top: min(56vh, 460px);
      transform: translate(-50%, -18px);
      display: flex;
      gap: 8px;
      z-index: 3;
    }

    .fleet-focus-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: 1px solid rgba(244, 242, 237, 0.45);
      background: rgba(244, 242, 237, 0.2);
      padding: 0;
      cursor: pointer;
    }

    .fleet-focus-dot.is-active {
      border-color: var(--accent-2);
      background: var(--accent-2);
    }

    .fleet-focus-content {
      padding: 24px 26px 28px;
    }

    .fleet-focus-title {
      margin: 10px 0 10px;
      font-size: clamp(28px, 5vw, 46px);
      line-height: 0.95;
      text-transform: uppercase;
    }

    .fleet-focus-copy {
      margin: 0;
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      font-size: 17px;
      color: var(--muted);
      line-height: 1.65;
      max-width: 70ch;
    }

    .story {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      align-items: center;
    }

    .story-photo {
      border-radius: 22px;
      border: 1px solid var(--line);
      background: linear-gradient(130deg, rgba(240, 74, 58, 0.2), rgba(247, 197, 72, 0.1));
      min-height: 240px;
      display: grid;
      place-items: center;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      font-size: 12px;
      overflow: hidden;
      transform: translateY(0) scale(1);
      box-shadow: 0 10px 18px -16px rgba(0, 0, 0, 0.4);
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.32s ease;
      will-change: transform, box-shadow;
    }

    .story-photo:hover {
      transform: translateY(-16px) scale(1.015);
      border-color: rgba(240, 74, 58, 0.9);
      box-shadow:
        0 30px 44px -24px rgba(0, 0, 0, 0.72),
        0 22px 34px -18px rgba(240, 74, 58, 0.62),
        0 0 0 1px rgba(247, 197, 72, 0.35);
    }

    .story-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .story-text {
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    .car {
      border-radius: 20px;
      padding: 22px;
      background: var(--bg-alt);
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      animation: floatIn 0.8s ease both;
      transform: translateY(0) scale(1);
      box-shadow: 0 10px 18px -16px rgba(0, 0, 0, 0.45);
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.32s ease;
      will-change: transform, box-shadow;
    }

    .car:nth-child(2) { animation-delay: 0.1s; }
    .car:nth-child(3) { animation-delay: 0.2s; }

    .car:hover {
      transform: translateY(-26px) scale(1.03);
      border-color: rgba(240, 74, 58, 0.95);
      box-shadow:
        0 46px 60px -24px rgba(0, 0, 0, 0.75),
        0 34px 48px -20px rgba(240, 74, 58, 0.86),
        0 0 0 1px rgba(247, 197, 72, 0.4);
    }

    .car h3 {
      margin: 0 0 10px;
      font-size: 22px;
    }

    .car-photo {
      position: relative;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: linear-gradient(140deg, rgba(244, 242, 237, 0.08), rgba(240, 74, 58, 0.08));
      height: 150px;
      margin-bottom: 16px;
      overflow: hidden;
      display: grid;
      place-items: center;
      cursor: pointer;
    }

    .car-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      background: #0f1217;
      opacity: 1;
      transition: opacity 0.32s ease;
    }

    .car-photo img.is-fading {
      opacity: 0.4;
    }

    .car-photo .overlay {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 18px;
      color: rgba(244, 242, 237, 0.9);
      text-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
      pointer-events: none;
    }

    .car-photo span {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 14px;
      color: rgba(244, 242, 237, 0.5);
      border: 1px dashed rgba(244, 242, 237, 0.2);
      padding: 10px 14px;
      border-radius: 999px;
    }

    .car-photo-control {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 999px;
      border: 1px solid rgba(244, 242, 237, 0.3);
      background: rgba(11, 13, 16, 0.7);
      color: var(--ink);
      font-size: 22px;
      line-height: 1;
      display: grid;
      place-items: center;
      z-index: 4;
      cursor: pointer;
      padding: 0;
    }

    .car-photo-control.prev { left: 8px; }
    .car-photo-control.next { right: 8px; }

    .car-photo-dots {
      position: absolute;
      left: 50%;
      bottom: 10px;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 4;
    }

    .car-photo-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      border: 1px solid rgba(244, 242, 237, 0.45);
      background: rgba(244, 242, 237, 0.2);
      padding: 0;
      cursor: pointer;
    }

    .car-photo-dot.is-active {
      background: var(--accent-2);
      border-color: var(--accent-2);
    }

    .mobile-carousel-dots {
      display: none;
    }

    .tag {
      display: inline-block;
      font-size: 12px;
      text-transform: uppercase;
      background: rgba(240, 74, 58, 0.2);
      color: var(--accent);
      padding: 6px 10px;
      border-radius: 999px;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .car p {
      margin: 0;
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
    }

    .car > p {
      margin-top: 2px;
      margin-bottom: 14px;
    }

    .car-actions {
      margin-top: auto;
      margin-bottom: 14px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .car-actions > .car-action:only-child {
      grid-column: 1 / -1;
      justify-self: center;
      width: min(100%, 220px);
    }

    .car-action {
      min-height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(244, 242, 237, 0.2);
      background: rgba(255, 255, 255, 0.03);
      color: var(--ink);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      text-align: center;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .car-action:hover {
      transform: translateY(-1px);
      border-color: rgba(247, 197, 72, 0.7);
      box-shadow: 0 12px 22px -16px rgba(240, 74, 58, 0.58);
    }

    .car-action.is-primary {
      border-color: rgba(240, 74, 58, 0.55);
      background: rgba(240, 74, 58, 0.15);
    }

    .car-action.is-disabled {
      border-color: rgba(244, 242, 237, 0.2);
      background: rgba(255, 255, 255, 0.02);
      color: rgba(244, 242, 237, 0.55);
      cursor: not-allowed;
      box-shadow: none;
      transform: none;
      pointer-events: none;
    }

    .car-stats {
      margin-top: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(70px, 1fr));
      gap: 12px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
    }

    .car-stats span {
      display: block;
      font-size: 14px;
      color: var(--accent-2);
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    .stripe {
      position: absolute;
      inset: auto -40% 10% 30%;
      height: 16px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.5;
      transform: rotate(-4deg);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }

    .card {
      padding: 18px;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
      transform: translateY(0) scale(1);
      box-shadow: 0 10px 18px -16px rgba(0, 0, 0, 0.4);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                  box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.3s ease;
      will-change: transform, box-shadow;
    }

    .card:hover {
      transform: translateY(-16px) scale(1.015);
      border-color: rgba(240, 74, 58, 0.85);
      box-shadow:
        0 28px 42px -22px rgba(0, 0, 0, 0.7),
        0 20px 34px -18px rgba(240, 74, 58, 0.62),
        0 0 0 1px rgba(247, 197, 72, 0.35);
    }

    .card h4 {
      margin: 0 0 8px;
      font-size: 16px;
      text-transform: uppercase;
    }

    .card p {
      margin: 0;
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }

    .agenda-block h4 {
      margin: 0 0 12px;
      font-size: 16px;
      text-transform: uppercase;
    }

    .agenda-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      display: grid;
      gap: 8px;
    }

    .agenda-list li.is-collapsed-hidden {
      display: none;
    }

    .agenda-list li {
      padding-bottom: 8px;
      border-bottom: 1px solid var(--line);
    }

    .agenda-toggle {
      margin-top: 12px;
      min-height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(244, 242, 237, 0.26);
      background: rgba(255, 255, 255, 0.04);
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-size: 11px;
      padding: 0 12px;
      cursor: pointer;
      width: fit-content;
    }

    .agenda-block {
      display: flex;
      flex-direction: column;
    }

    .cta-band {
      margin-top: 64px;
      padding: 28px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(240, 74, 58, 0.22), rgba(247, 197, 72, 0.16));
      border: 1px solid rgba(240, 74, 58, 0.3);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .cta-band p {
      margin: 0;
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      color: var(--muted);
    }

    .location {
      display: grid;
      grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .location-card {
      padding: 22px;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.03);
    }

    .location-card h3 {
      margin: 0 0 12px;
      font-size: 20px;
      text-transform: uppercase;
    }

    .location-card p {
      margin: 0 0 8px;
      font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
      color: var(--muted);
      line-height: 1.5;
    }

    .location-cta {
      margin-top: 12px;
      width: fit-content;
    }

    .location-map-wrap {
      border-radius: 18px;
      border: 1px solid var(--line);
      overflow: hidden;
      min-height: 320px;
      background: #111;
    }

    .location-map {
      width: 100%;
      height: 100%;
      min-height: 320px;
      border: 0;
      display: block;
    }


    footer {
      margin-top: 48px;
      border-top: 1px solid var(--line);
      padding-top: 20px;
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    @keyframes floatIn {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 720px) {
      nav {
        display: none;
      }

      .mobile-quick-nav {
        display: flex;
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
        position: relative;
        z-index: 1401;
      }

      .mobile-menu-panel {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: min(320px, calc(100vw - 48px));
        max-height: 420px;
        opacity: 0;
        overflow-y: auto;
        transform: translateY(-6px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.22s ease, transform 0.22s ease;
        padding: 10px;
        position: absolute;
        right: 0;
        top: calc(100% + 6px);
        z-index: 1400;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(11, 13, 16, 0.96);
        box-shadow: 0 24px 42px -24px rgba(0, 0, 0, 0.85);
        pointer-events: none;
      }

      .mobile-menu-panel.is-open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
      }

      .mobile-menu-panel a {
        min-height: 40px;
        padding: 0 14px;
        border-radius: 12px;
        border: 1px solid var(--line);
        text-decoration: none;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.8px;
        color: var(--ink);
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.04);
      }

      .hero {
        padding-top: 20px;
      }

      .pilots-entry {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }

      .pilots-entry h2 {
        font-size: 20px;
      }

      .fleet,
      .grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 4px 2px 12px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .fleet::-webkit-scrollbar,
      .grid::-webkit-scrollbar {
        display: none;
      }

      .fleet > .car,
      .grid > .card {
        flex: 0 0 100%;
        max-width: 100%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        transition: transform 0.35s ease, opacity 0.35s ease;
      }

      .mobile-carousel-dots {
        margin: 6px 0 14px;
        justify-content: center;
        align-items: center;
        gap: 8px;
      }

      .mobile-carousel-dots.is-visible {
        display: flex;
      }

      .mobile-carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        border: 1px solid rgba(244, 242, 237, 0.45);
        background: rgba(244, 242, 237, 0.2);
        padding: 0;
        cursor: pointer;
        transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
      }

      .mobile-carousel-dot.is-active {
        background: var(--accent-2);
        border-color: var(--accent-2);
        transform: scale(1.25);
      }

      .car {
        padding: 14px;
      }

      .card {
        padding: 14px;
      }

      .car:hover {
        transform: none;
        border-color: var(--line);
        box-shadow: 0 10px 18px -16px rgba(0, 0, 0, 0.45);
      }

      .agenda-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow: visible;
        padding: 0;
      }

      .agenda-grid > .card {
        flex: initial;
        max-width: none;
      }

      .fleet .car-photo {
        height: 200px;
      }

      .fleet .car-photo img {
        min-height: 0;
        height: 100%;
        object-fit: cover;
        object-position: center top;
      }

      .car-photo .overlay {
        font-size: 15px;
      }

      .car-action {
        min-height: 40px;
      }

      .car-actions {
        grid-template-columns: 1fr;
        margin-top: 16px;
        margin-bottom: 12px;
      }

      .cta-band {
        flex-direction: column;
        align-items: flex-start;
      }

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

      .car-photo-control {
        width: 38px;
        height: 38px;
      }

      .fleet-focus-overlay {
        padding: 10px;
      }

      .fleet-focus-card {
        width: 100%;
        max-height: 94vh;
        border-radius: 18px;
      }

      .fleet-focus-media {
        height: clamp(220px, 42vh, 320px);
      }

      .fleet-focus-control {
        width: 36px;
        height: 36px;
        top: clamp(70px, 20vh, 140px);
      }

      .fleet-focus-dots {
        top: auto;
        bottom: calc(100% - min(42vh, 280px) + 10px);
      }

      .fleet-focus-content {
        padding: 18px 16px 20px;
      }

      .fleet-focus-title {
        font-size: clamp(24px, 7vw, 34px);
      }
    }
.logo-title {
  font-size: 18px;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
}

.setup-text {
  font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
  color: var(--muted);
  line-height: 1.6;
}

.cta-title {
  font-size: 20px;
  text-transform: uppercase;
}

