/* stylesheet for ontheway */
:root {
    --bronze:     #C9A66B;
    --dark-ocean: #0F1C2E;
    --rock:       #1A252F;
    --ember:      #E36A2C;
    --mist:       #A8B5C7;
    --glow:       #A1C4D1;
    --light:      #E8E8E8;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    background: var(--dark-ocean);
    color: var(--light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; }
  a:focus-visible, button:focus-visible { outline: 2px solid var(--glow); outline-offset: 3px; }

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

  /* --- Hero --- */

  header.hero {
    position: relative;
    padding: 88px 0 96px;
    overflow: hidden;
    border-bottom: 1px solid rgba(232, 232, 232, 0.08);
  }

  .route-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
  }

  .route-map path { fill: none; stroke: var(--mist); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1 14; }
  .route-map .stop { fill: var(--ember); }
  .route-map .stop-halo { fill: var(--ember); opacity: 0.15; }

  header.hero .wrap { position: relative; z-index: 1; }

  .eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 20px;
  }

  h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.08;
    margin: 0 0 20px;
    max-width: 11ch;
  }

  h1 em { font-style: normal; color: var(--glow); }

  p.sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--mist);
    max-width: 42ch;
    margin: 0 0 36px;
  }

  .store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(232, 232, 232, 0.2);
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
  }

  .badge .status {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bronze);
  }

  /* --- Features --- */

  section.features {
    padding: 72px 0;
    border-bottom: 1px solid rgba(232, 232, 232, 0.08);
  }

  section.features h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 40px;
    color: var(--light);
  }

  .feature-list {
    display: grid;
    gap: 28px;
  }

  .feature {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 16px;
    align-items: start;
  }

  .feature .mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ember);
    margin-top: 8px;
  }

  .feature h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--light);
  }

  .feature p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--mist);
  }

  /* --- Closing --- */

  section.closing {
    padding: 80px 0 96px;
    text-align: center;
  }

  section.closing h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
    margin: 0 0 14px;
    color: var(--light);
  }

  section.closing p {
    color: var(--mist);
    font-size: 16px;
    margin: 0 0 32px;
  }

  a.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    background: var(--ember);
    color: var(--dark-ocean);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.15s ease, background 0.15s ease;
  }

  a.btn-primary:hover { transform: translateY(-1px); background: #ef7d43; }

  footer {
    padding: 28px 0 48px;
    text-align: center;
    font-size: 13px;
    color: rgba(168, 181, 199, 0.5);
  }

  footer a { text-decoration: underline; text-underline-offset: 2px; }

  @media (max-width: 520px) {
    header.hero { padding: 64px 0 72px; }
    section.features, section.closing { padding: 56px 0; }
  }
  /*.store-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-end;
  }*/

  .store-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .store-badge .status {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
  }

  .store-badge img {
    display: block;
    height: 60px;
    width: auto;
  }