/* VRC On Tour landing — light, mobile, business */

.ot-breadcrumb-band {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
.ot-breadcrumb-band .breadcrumb { margin: 0; color: var(--muted); }
.ot-breadcrumb-band .breadcrumb a { color: var(--ink); }

.ot-note {
  margin: 1.25rem 0 0;
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--cyan);
  background: var(--panel-light);
  color: var(--muted);
  font-size: 0.95rem;
}
.section--dark .ot-note,
.ot-access .ot-note,
.mm-soft .ot-note {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-on-dark);
  border-left-color: var(--cyan);
}

.ot-badge--final {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 203, 214, 0.55);
  background: rgba(46, 203, 214, 0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero--ot {
  min-height: 0;
  height: min(88svh, 880px);
  color: #fff;
}
.hero--ot .hero__veil {
  background:
    linear-gradient(105deg, rgba(7, 9, 13, 0.55) 0%, rgba(7, 9, 13, 0.22) 48%, rgba(7, 9, 13, 0.18) 100%),
    linear-gradient(to top, rgba(7, 9, 13, 0.62) 0%, transparent 50%);
}
.hero--ot h1 { max-width: 16ch; }
.hero--ot .hero__copy { max-width: 40rem; padding-bottom: 4.5rem; }
.ot-badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 0.65rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(46, 203, 214, 0.18);
  border: 1px solid rgba(46, 203, 214, 0.55);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ot-badge-note {
  margin: 0 0 1.15rem;
  color: rgba(245, 247, 250, 0.78);
  font-size: 0.92rem;
}

.ot-exclusive {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.ot-exclusive .section-heading { max-width: 20ch; }
.ot-exclusive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.ot-exclusive-item {
  padding: 1.2rem 1.15rem;
  border-top: 2px solid var(--cyan);
  background: var(--panel-light);
}
.ot-exclusive-item h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.ot-exclusive-item p { margin: 0; color: var(--muted); font-size: 0.98rem; }

.ot-territory {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin-top: 2rem;
}
.ot-territory__core {
  padding: 1.15rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 126, 136, 0.35);
  background: rgba(46, 203, 214, 0.1);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cyan-dark);
}
.ot-territory__nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.ot-territory__nodes span {
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.ot-kit {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  margin-top: 2rem;
}
.ot-kit-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.ot-kit-block--reverse { grid-template-columns: 0.85fr 1.15fr; }
.ot-kit-block--reverse .ot-kit-copy { order: 2; }
.ot-kit-block--reverse .ot-kit-media { order: 1; }
.ot-kit-cat {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  font-weight: 700;
}
.ot-kit-media {
  margin: 0;
  border-radius: var(--radius-img);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4 / 3;
}
.ot-kit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ot-kit-media--empty {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 1px dashed var(--line);
  background: var(--panel-light);
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}
.ot-feat,
.ot-ctx {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}
.ot-feat li,
.ot-ctx li {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.ot-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.ot-benefit {
  padding: 1.15rem 1.05rem;
  border-top: 2px solid var(--cyan);
  background: var(--white);
}
.ot-benefit h3 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.ot-benefit p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.ot-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-top: 1.5rem;
  font-weight: 700;
}
.ot-flow span[aria-hidden="true"] { color: var(--cyan-dark); }
.ot-flow__item {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.9rem;
}

.ot-logistics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.ot-logistics li {
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-light);
  font-weight: 700;
  font-size: 0.92rem;
}

.ot-events {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.ot-events article {
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.ot-events h3 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.ot-events p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.ot-config-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
  counter-reset: otc;
}
.ot-config-step {
  padding: 1.1rem 1rem;
  border-top: 2px solid var(--cyan);
  background: rgba(7, 9, 13, 0.35);
}
.ot-config-step::before {
  counter-increment: otc;
  content: "0" counter(otc);
  display: block;
  margin-bottom: 0.4rem;
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.8rem;
}
.ot-config-step h3 { margin: 0 0 0.35rem; color: #fff; font-size: 1.05rem; }
.ot-config-step p { margin: 0; color: var(--muted-on-dark); font-size: 0.92rem; }
.ot-tool-label {
  margin: 0.85rem 0 0;
  color: var(--muted-on-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.ot-eco {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin-top: 2rem;
}
.ot-eco__core {
  padding: 1.2rem 1.5rem;
  border-radius: 999px;
  background: rgba(46, 203, 214, 0.12);
  border: 1px solid rgba(8, 126, 136, 0.3);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cyan-dark);
}
.ot-eco__ring {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.ot-eco__ring span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.ot-eco__out {
  margin-top: 0.35rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.ot-eco__dest {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.ot-eco__dest span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-light);
  font-weight: 600;
  font-size: 0.88rem;
}

.ot-access {
  background: #11141a;
  color: var(--text-on-dark);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.ot-access .eyebrow { color: var(--cyan); }
.ot-access .section-heading { color: #fff; max-width: 16ch; }
.ot-access .section-copy { color: var(--muted-on-dark); }
.ot-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.ot-path {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(245, 247, 250, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 9, 13, 0.4);
}
.ot-path h3 { margin: 0 0 0.5rem; color: #fff; font-size: 1.2rem; }
.ot-path p { margin: 0 0 1rem; color: var(--muted-on-dark); }
.ot-access .btn--secondary {
  color: var(--text-on-dark);
  border-color: rgba(245, 247, 250, 0.45);
}

.ot-req {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.ot-req article {
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-light);
}
.ot-req h3 { margin: 0 0 0.4rem; font-size: 1.1rem; }
.ot-req p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.mobile-cta--ot { display: none; }

.ot-mt-sm { margin-top: 1.25rem; }
.ot-mt-md { margin-top: 1.5rem; }
.ot-mt-lg { margin-top: 1.75rem; }

@media (max-width: 1100px) {
  .ot-exclusive-grid,
  .ot-benefits,
  .ot-events,
  .ot-config-steps,
  .ot-logistics,
  .ot-req {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ot-kit-block,
  .ot-kit-block--reverse {
    grid-template-columns: 1fr;
  }
  .ot-kit-block--reverse .ot-kit-copy,
  .ot-kit-block--reverse .ot-kit-media { order: initial; }
}

@media (max-width: 900px) {
  .hero--ot {
    height: auto;
    min-height: 72svh;
  }
  .ot-exclusive-grid,
  .ot-benefits,
  .ot-events,
  .ot-config-steps,
  .ot-logistics,
  .ot-req,
  .ot-feat,
  .ot-ctx,
  .ot-paths {
    grid-template-columns: 1fr;
  }
  .mobile-cta--ot { display: inline-flex; }
  body.has-mm-final-inview .mobile-cta--ot {
    opacity: 0;
    pointer-events: none;
  }
}

.mm-sixty {
  padding: 3.5rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.mm-sixty .section-heading { margin-bottom: 1.1rem; }
.mm-sixty__list {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 42rem;
}
.mm-sixty__list li {
  margin: 0;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--cyan);
  font-size: 0.98rem;
}

