    :root {
      --bg: #0a0b0d;
      --bg-soft: #111317;
      --text: #eef0f2;
      --text-dim: #b4bac1;
      --accent: #4ea8de;
      --max-width: 720px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
    }

    html {
      scroll-behavior: smooth;
    }

    #mission, #access {
      scroll-margin-top: 84px;
    }

    body {
      background:
        radial-gradient(1200px 600px at 50% -10%, rgba(78, 168, 222, 0.08), transparent 60%),
        var(--bg);
      color: var(--text);
      font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-weight: 400;
      letter-spacing: 0.01em;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      line-height: 1.7;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #seaCanvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* Frosted "liquid glass" layer that blurs the animation once the build
       section opens, so the foreground detail stays readable. Sits above the
       canvas but below the page content (main, nav). */
    .scrim {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0;
      background: linear-gradient(
        180deg,
        rgba(10, 11, 13, 0.45),
        rgba(10, 11, 13, 0.62)
      );
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      backdrop-filter: blur(18px) saturate(140%);
      transition: opacity 0.6s ease;
    }

    body.details-open .scrim {
      opacity: 1;
    }

    .nav {
      position: fixed;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 3px 5px 3px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      backdrop-filter: blur(16px) saturate(160%);
    }

    .nav__brand {
      font-weight: 500;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      font-size: 0.74rem;
      color: var(--text);
      text-decoration: none;
      padding-right: 6px;
    }

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

    .nav__link {
      color: var(--text-dim);
      text-decoration: none;
      font-size: 0.74rem;
      letter-spacing: 0.08em;
      padding: 4px 12px;
      border-radius: 999px;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .nav__link:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
    }

    .nav__link--accent {
      color: #0a0b0d;
      background: var(--accent);
      font-weight: 500;
    }

    .nav__link--accent:hover {
      color: #0a0b0d;
      background: #6fbce8;
    }

    main {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: var(--max-width);
      padding: 104px 24px 56px;
      text-align: center;
    }

    .wheel {
      position: relative;
      width: clamp(280px, 72vw, 440px);
      aspect-ratio: 1 / 1;
      margin: 0 auto 44px;
    }

    .wheel__ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 3px;
      background: rgba(255, 255, 255, 0.18);
      box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .wheel__quadrant {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .wheel::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      pointer-events: none;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .wheel__center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 52%;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10, 11, 13, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
      -webkit-backdrop-filter: blur(14px) saturate(150%);
      backdrop-filter: blur(14px) saturate(150%);
    }

    .logo {
      width: 78%;
      height: auto;
      filter: invert(1) brightness(1.1);
    }

    .lede {
      font-size: clamp(1rem, 1.9vw, 1.15rem);
      font-weight: 300;
      line-height: 1.65;
      letter-spacing: 0.01em;
      color: var(--text-dim);
      max-width: 46ch;
      margin: 0 auto 28px;
    }

    .mission {
      font-size: clamp(1.1rem, 2.2vw, 1.4rem);
      font-weight: 300;
      line-height: 1.45;
      letter-spacing: 0.005em;
      color: var(--text);
      max-width: 30ch;
      margin: 0 auto;
      text-wrap: balance;
    }

    .mission strong {
      color: var(--accent);
      font-weight: 400;
    }

    .divider {
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(78, 168, 222, 0.5), transparent);
      margin: 32px auto;
      border: 0;
    }

    .cta-row {
      margin: 8px auto 4px;
    }

    .cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      color: #0a0b0d;
      background: var(--accent);
      text-decoration: none;
      padding: 15px 34px;
      border-radius: 999px;
      box-shadow:
        0 10px 30px rgba(78, 168, 222, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }

    .cta:hover {
      background: #6fbce8;
      transform: translateY(-2px);
      box-shadow:
        0 16px 40px rgba(78, 168, 222, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    .cta__arrow {
      font-size: 1.15rem;
      line-height: 1;
    }

    .shot {
      margin: 20px 0;
    }

    .shot img {
      width: 100%;
      display: block;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .shot figcaption {
      margin-top: 10px;
      font-size: 0.82rem;
      color: var(--text-dim);
      letter-spacing: 0.02em;
      line-height: 1.5;
    }

    .shot--soft {
      margin: 22px 0;
    }

    .shot--soft img {
      border: 0;
      border-radius: 18px;
      box-shadow: none;
      aspect-ratio: 21 / 9;
      -webkit-mask-image: radial-gradient(120% 130% at 50% 45%, #000 60%, transparent 100%);
      mask-image: radial-gradient(120% 130% at 50% 45%, #000 60%, transparent 100%);
      opacity: 0.9;
    }

    .shot--soft figcaption {
      text-align: center;
    }

    .band {
      position: relative;
      margin: 26px 0;
      border-radius: 20px;
      overflow: hidden;
      min-height: 230px;
      display: flex;
      align-items: flex-end;
      isolation: isolate;
    }

    .band--lead {
      min-height: 280px;
    }

    .band__bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: saturate(1.05);
      z-index: -2;
    }

    .band::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(
        180deg,
        rgba(10, 11, 13, 0.25) 0%,
        rgba(10, 11, 13, 0.55) 55%,
        rgba(10, 11, 13, 0.9) 100%
      );
    }

    .band__inner {
      padding: 26px 26px 24px;
      max-width: 52ch;
    }

    .band__inner h2 {
      margin: 0 0 8px;
    }

    .band__title {
      margin: 6px 0 8px;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--text);
      letter-spacing: 0.01em;
    }

    .band__inner p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--text);
    }

    .band__inner .fin-sub {
      margin-bottom: 4px;
    }

    /* Lead intro (text only, image moved into the triptych) */
    .more-lead {
      margin: 4px 0 2px;
    }

    .more-lead h2 {
      margin: 0 0 8px;
    }

    .more-lead p {
      margin: 0;
      font-size: 1rem;
      color: var(--text);
      max-width: 56ch;
    }

    /* Three shots fused into one band via diagonal clip-path seams */
    .triptych {
      position: relative;
      height: clamp(170px, 32vw, 270px);
      margin: 22px 0 6px;
      border-radius: 20px;
      overflow: hidden;
      background: #0a0b0d;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
      isolation: isolate;
    }

    .triptych__pane {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-repeat: no-repeat;
      filter: saturate(1.05);
    }

    .triptych__pane--a {
      background-position: left center;
      clip-path: polygon(0 0, 35.6% 0, 29.6% 100%, 0 100%);
    }

    .triptych__pane--b {
      background-position: center;
      clip-path: polygon(36.4% 0, 69.6% 0, 63.6% 100%, 30.4% 100%);
    }

    .triptych__pane--c {
      background-position: right center;
      clip-path: polygon(70.4% 0, 100% 0, 100% 100%, 64.4% 100%);
    }

    .access {
      margin-top: 40px;
    }

    .access__label {
      font-family: "Caveat", "Jost", sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      text-transform: none;
      color: var(--text);
      margin-bottom: 12px;
    }

    .access__form {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 5px 5px 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
      backdrop-filter: blur(16px) saturate(160%);
    }

    .access__input {
      appearance: none;
      background: transparent;
      border: 0;
      outline: none;
      color: var(--text);
      font-family: inherit;
      font-size: 0.9rem;
      letter-spacing: 0.16em;
      text-align: center;
      text-transform: uppercase;
      padding: 8px 12px;
      width: 190px;
    }

    .access__input::placeholder {
      color: var(--text-dim);
      letter-spacing: 0.12em;
      text-transform: none;
    }

    .access__button {
      appearance: none;
      border: 0;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: #0a0b0d;
      background: var(--accent);
      padding: 8px 18px;
      border-radius: 999px;
      transition: background 0.2s ease;
    }

    .access__button:hover {
      background: #6fbce8;
    }

    .access__error {
      min-height: 1.2em;
      margin-top: 12px;
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      color: #e0726a;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .access__error.is-visible {
      opacity: 1;
    }

    .more {
      max-width: 600px;
      margin: 28px auto 0;
      padding-top: 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-dim);
      display: none;
    }

    .more.is-visible {
      display: block;
      animation: more-in 0.4s ease both;
    }

    .more h2 {
      font-weight: 500;
      font-size: 1.1rem;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 12px;
    }

    .more p + p {
      margin-top: 14px;
    }

    @keyframes more-in {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .more {
      text-align: left;
    }

    .fin-section {
      margin-top: 32px;
    }

    .fin-section:first-of-type {
      margin-top: 4px;
    }

    .fin-sub {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .fin-section p {
      font-size: 0.95rem;
      color: var(--text-dim);
    }

    .fin-section p strong {
      color: var(--text);
      font-weight: 500;
    }

    .fin-head {
      font-size: 1.15rem;
      font-weight: 500;
      line-height: 1.35;
      letter-spacing: 0.005em;
      color: var(--text);
      margin: 2px 0 12px;
      text-wrap: balance;
    }

    /* Hero numbers (free-floating, no cards) -------------------------------- */
    .kpis {
      display: flex;
      flex-wrap: wrap;
      gap: 18px 40px;
      margin: 20px 0 12px;
      align-items: flex-end;
    }

    .kpi__num {
      position: relative;
      z-index: 0;
      display: inline-block;
      font-size: 2.2rem;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--text);
      font-variant-numeric: tabular-nums;
    }

    .kpi__unit {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-dim);
      margin-left: 1px;
      letter-spacing: 0;
    }

    .kpi--accent .kpi__num {
      color: var(--accent);
    }

    .kpi__label {
      display: block;
      margin-top: 7px;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* Oceanic wave canvas drawn behind highlighted numbers */
    .wave-host {
      position: relative;
      z-index: 0;
    }

    .wave-canvas {
      position: absolute;
      top: 0;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    /* De-emphasised disclosure for the dense numbers/tables ----------------- */
    .detail {
      margin-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .detail > summary {
      list-style: none;
      cursor: pointer;
      padding: 10px 0 2px;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      color: var(--text-dim);
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: color 0.15s ease;
    }

    .detail > summary::-webkit-details-marker {
      display: none;
    }

    .detail > summary::before {
      content: "+";
      font-size: 0.95rem;
      line-height: 1;
      color: var(--accent);
    }

    .detail[open] > summary::before {
      content: "\2212";
    }

    .detail > summary:hover {
      color: var(--text);
    }

    .detail__body {
      padding: 2px 0 8px;
    }

    .detail__body p {
      font-size: 0.85rem;
      color: var(--text-dim);
    }

    .detail__list {
      margin: 6px 0 0;
      padding: 0;
      list-style: none;
    }

    .detail__list li {
      font-size: 0.85rem;
      color: var(--text-dim);
      padding: 7px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      line-height: 1.45;
    }

    .detail__list li:last-child {
      border-bottom: 0;
    }

    .detail__list strong {
      color: var(--text);
      font-weight: 500;
    }

    .data-table {
      width: 100%;
      margin-top: 8px;
      border-collapse: collapse;
      font-size: 0.82rem;
    }

    .data-table th,
    .data-table td {
      padding: 8px 4px;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      color: var(--text-dim);
      font-weight: 400;
      line-height: 1.4;
    }

    .data-table thead th {
      font-size: 0.66rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #6b7178;
      border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    .data-table tbody th {
      color: var(--text);
      padding-right: 14px;
    }

    .data-table .num {
      text-align: right;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .data-table .accent {
      color: var(--accent);
      font-weight: 500;
    }

    .data-table tr:last-child th,
    .data-table tr:last-child td {
      border-bottom: 0;
    }

    .data-table + .data-table {
      margin-top: 10px;
    }

    .bars {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .bar__head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 0.84rem;
      color: var(--text);
      margin-bottom: 7px;
    }

    .bar__total {
      color: var(--text-dim);
      font-size: 0.8rem;
    }

    .bar__track {
      display: flex;
      height: 18px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
    }

    .seg {
      height: 100%;
    }

    .seg--fuel { background: #d9755f; }
    .seg--crew { background: var(--accent); }
    .seg--maint { background: #5f7d96; }
    .seg--capital { background: #44515f; }
    .seg--ins { background: #2f3946; }

    .legend {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      margin-top: 14px;
      font-size: 0.74rem;
      color: var(--text-dim);
    }

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

    .legend i {
      width: 10px;
      height: 10px;
      border-radius: 3px;
      display: inline-block;
    }

    .disclaimer {
      margin-top: 28px;
      font-size: 0.76rem;
      color: var(--text-dim);
      font-style: italic;
    }

    .sources {
      margin-top: 10px;
      font-size: 0.7rem;
      line-height: 1.5;
      color: #6b7178;
    }

    .miner-fig {
      margin: 16px 0 0;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .miner-fig img {
      width: 132px;
      flex: none;
      border-radius: 12px;
      background: #eef1f4;
      padding: 8px;
    }

    .miner-fig figcaption {
      font-size: 0.8rem;
      color: var(--text-dim);
      line-height: 1.5;
    }

    .miner-fig figcaption strong {
      color: var(--text);
      font-weight: 500;
    }

    .chart {
      position: relative;
      margin-top: 18px;
      display: flex;
      align-items: flex-end;
      gap: 16px;
      height: 200px;
    }

    .chart__col {
      flex: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
    }

    .chart__val {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 6px;
    }

    .chart__bar {
      width: 100%;
      border-radius: 8px 8px 0 0;
      background: linear-gradient(180deg, var(--accent), rgba(78, 168, 222, 0.25));
      min-height: 4px;
    }

    .chart__col--reach .chart__bar {
      background: linear-gradient(180deg, #7fd1a6, rgba(127, 209, 166, 0.25));
    }

    .chart__breakeven {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 18%;
      border-top: 1px dashed rgba(255, 255, 255, 0.35);
      pointer-events: none;
    }

    .chart__breakeven span {
      position: absolute;
      right: 0;
      top: -16px;
      font-size: 0.66rem;
      color: var(--text-dim);
    }

    .chart-legend {
      display: flex;
      gap: 16px;
      margin-top: 8px;
    }

    .chart-cap {
      flex: 1;
      text-align: center;
    }

    .chart-cap__name {
      display: block;
      font-size: 0.82rem;
      color: var(--text);
    }

    .chart-cap__prob {
      display: block;
      font-size: 0.72rem;
      color: var(--accent);
      margin-top: 2px;
    }

    @media (max-width: 480px) {
      .band__inner {
        padding: 20px 18px;
      }
      .data-table {
        font-size: 0.8rem;
      }
      .kpis {
        gap: 14px 28px;
      }
      .kpi__num {
        font-size: 1.7rem;
      }
      .miner-fig {
        flex-direction: column;
        align-items: flex-start;
      }
      main {
        padding: 96px 20px 40px;
      }
      .access__input {
        width: 130px;
      }
      .wheel {
        margin-bottom: 36px;
      }
      .nav {
        gap: 4px;
        padding: 6px 8px 6px 14px;
      }
      .nav__brand {
        letter-spacing: 0.2em;
        font-size: 0.74rem;
      }
      .nav__link {
        font-size: 0.74rem;
        padding: 6px 10px;
      }
    }

    .nav__link--current {
      color: var(--text);
      background: rgba(255, 255, 255, 0.1);
    }

    .page {
      width: 100%;
      max-width: 480px;
      padding: 120px 24px 64px;
      text-align: left;
    }

    .page__eyebrow {
      font-size: 0.74rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .page__title {
      font-size: clamp(1.7rem, 5vw, 2.3rem);
      font-weight: 500;
      letter-spacing: 0.01em;
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .page__intro {
      color: var(--text-dim);
      font-size: 1.02rem;
      line-height: 1.65;
      margin-bottom: 32px;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 32px;
      box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-bottom: 18px;
    }

    .field label {
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    .field input,
    .field textarea {
      appearance: none;
      width: 100%;
      background: rgba(10, 11, 13, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 12px;
      color: var(--text);
      font-family: inherit;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      padding: 11px 14px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field textarea {
      resize: vertical;
      min-height: 120px;
      line-height: 1.6;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(180, 186, 193, 0.55);
    }

    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(78, 168, 222, 0.18);
    }

    .btn {
      appearance: none;
      border: 0;
      cursor: pointer;
      width: 100%;
      font-family: inherit;
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: #0a0b0d;
      background: var(--accent);
      padding: 12px 18px;
      border-radius: 12px;
      transition: background 0.2s ease;
    }

    .btn:hover {
      background: #6fbce8;
    }

    .contact-direct {
      margin-top: 22px;
      font-size: 0.9rem;
      color: var(--text-dim);
      line-height: 1.7;
    }

    .contact-direct a {
      color: var(--accent);
      text-decoration: none;
    }

    .contact-direct a:hover {
      text-decoration: underline;
    }

    .form-note {
      min-height: 1.2em;
      margin-top: 14px;
      font-size: 0.84rem;
      color: var(--accent);
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .form-note.is-visible {
      opacity: 1;
    }

    .back-link {
      display: inline-block;
      margin-top: 28px;
      font-size: 0.86rem;
      color: var(--text-dim);
      text-decoration: none;
      letter-spacing: 0.04em;
    }

    .back-link:hover {
      color: var(--text);
    }

    .page--wide {
      max-width: 780px;
    }

    .field select {
      appearance: none;
      width: 100%;
      background: rgba(10, 11, 13, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 12px;
      color: var(--text);
      font-family: inherit;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      padding: 11px 38px 11px 14px;
      cursor: pointer;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23b4bac1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 14px center;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(78, 168, 222, 0.18);
    }

    .booker__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .booker__row .field {
      margin-bottom: 18px;
    }

    .quote {
      margin-top: 8px;
      padding: 20px 22px;
      border-radius: 16px;
      background: rgba(78, 168, 222, 0.05);
      border: 1px solid rgba(78, 168, 222, 0.16);
    }

    .quote__price {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .quote__perkg {
      font-size: 1.9rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1;
    }

    .quote__perkg small {
      font-size: 0.9rem;
      color: var(--text-dim);
      font-weight: 400;
    }

    .quote__route {
      text-align: right;
      font-size: 0.84rem;
      color: var(--text-dim);
      line-height: 1.45;
    }

    .quote__rows {
      display: grid;
      gap: 8px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 14px;
    }

    .qrow {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
    }

    .qrow span:first-child {
      color: var(--text-dim);
    }

    .qrow--total {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 10px;
      margin-top: 2px;
    }

    .qrow--total span:first-child {
      color: var(--text);
    }

    .qrow--total .accent {
      color: var(--accent);
    }

    .btn--ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.18);
      margin-top: 16px;
    }

    .btn--ghost:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .route__price small {
      font-size: 0.78rem;
      color: var(--text-dim);
      font-weight: 400;
    }

    .order {
      margin-top: 28px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 20px;
    }

    .order__title {
      font-size: 0.92rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
    }

    .order__empty {
      font-size: 0.9rem;
      color: var(--text-dim);
    }

    .order__item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.9rem;
    }

    .order__item-route {
      color: var(--text);
    }

    .order__item-meta {
      color: var(--text-dim);
      font-size: 0.82rem;
      margin-top: 2px;
    }

    .order__item-right {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: none;
    }

    .order__remove {
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--text-dim);
      cursor: pointer;
      font-size: 1.1rem;
      line-height: 1;
      padding: 0 2px;
    }

    .order__remove:hover {
      color: #e0726a;
    }

    .order__total {
      display: flex;
      justify-content: space-between;
      font-size: 1.05rem;
      font-weight: 500;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 14px;
      margin-top: 6px;
    }

    .order__total .accent {
      color: var(--accent);
    }

    .tabs {
      display: flex;
      gap: 6px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 4px;
      margin: 18px 0;
    }

    .contact-card > .tabs:first-child {
      margin-top: 0;
    }

    .tab {
      flex: 1;
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--text-dim);
      font: inherit;
      font-size: 0.88rem;
      letter-spacing: 0.03em;
      padding: 9px 12px;
      border-radius: 9px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .tab:hover {
      color: var(--text);
    }

    .tab--active,
    .tab--active:hover {
      background: var(--accent);
      color: #0a0b0d;
      font-weight: 500;
    }

    .tabpanel[hidden] {
      display: none;
    }

    .dims {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }

    .dims .field {
      margin-bottom: 18px;
    }

    .route-info {
      margin-top: 12px;
      font-size: 0.86rem;
      color: var(--text-dim);
    }

    .route-info strong {
      color: var(--text);
      font-weight: 500;
    }

    .oversize-note {
      margin-top: 12px;
      font-size: 0.82rem;
      color: var(--accent);
      line-height: 1.5;
    }

    #map {
      height: 380px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      margin-top: 18px;
      overflow: hidden;
      background: #0a0b0d;
      z-index: 1;
    }

    .leaflet-container {
      background: #0a0b0d;
      font-family: inherit;
    }

    .leaflet-tooltip {
      background: rgba(17, 19, 23, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--text);
      font-size: 0.78rem;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .leaflet-tooltip-top:before { border-top-color: rgba(255, 255, 255, 0.18); }
    .leaflet-tooltip-bottom:before { border-bottom-color: rgba(255, 255, 255, 0.18); }
    .leaflet-tooltip-left:before { border-left-color: rgba(255, 255, 255, 0.18); }
    .leaflet-tooltip-right:before { border-right-color: rgba(255, 255, 255, 0.18); }

    @media (max-width: 480px) {
      .booker__row {
        grid-template-columns: 1fr;
        gap: 0;
      }
      #map {
        height: 300px;
      }
    }
