.traffic-page {
  --traffic-surface: #fffaf4;
  --traffic-surface-strong: #ffffff;
  --traffic-muted: rgba(26, 26, 26, 0.72);
  --traffic-line: rgba(26, 26, 26, 0.12);
  min-height: 100vh;
  background: var(--tibumo-cream);
  color: var(--tibumo-black);
}
.traffic-page main {
  display: block;
}
.traffic-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.traffic-section {
  position: relative;
  padding: 96px 0;
}
.traffic-section:nth-of-type(even) {
  background: var(--traffic-surface);
}
.traffic-kicker {
  margin: 0 0 10px;
  color: var(--tibumo-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.traffic-section h2,
.traffic-hero h1,
.traffic-legal h1 {
  margin: 0;
  color: var(--tibumo-black);
  font-family: var(--brand-font);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.traffic-section__head {
  max-width: 780px;
  margin-bottom: 40px;
}
.traffic-section__head > p:last-child {
  max-width: 700px;
  margin-top: 18px;
  color: var(--traffic-muted);
  font-size: 19px;
  font-weight: 700;
}
.traffic-hero {
  position: relative;
  padding: calc(var(--site-nav-height, 72px) + 76px) 0 96px;
  overflow: hidden;
  background: var(--tibumo-cream);
}
.traffic-hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(235, 118, 36, 0.1);
  content: "";
}
.traffic-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}
.traffic-hero__copy {
  min-width: 0;
}
.traffic-hero__identity {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}
.traffic-hero__identity picture,
.traffic-hero__identity img {
  width: 104px;
  height: 104px;
  aspect-ratio: 1;
  border-radius: 22px;
}
.traffic-hero__tagline {
  margin: 10px 0 0;
  color: var(--tibumo-purple-dark);
  font-size: 21px;
  font-weight: 900;
}
.traffic-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--traffic-muted);
  font-size: 19px;
  font-weight: 700;
}
.traffic-promo { margin: 16px 0 0; color: var(--tibumo-purple-dark); font-weight: 900; }
.traffic-hero__art {
  overflow: hidden;
  border-radius: 26px 8px 26px 8px;
  box-shadow: 0 18px 42px rgba(26, 26, 26, 0.16);
}
.traffic-hero__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.traffic-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.traffic-stats > div {
  padding: 14px;
  border-top: 4px solid var(--tibumo-orange);
  background: var(--traffic-surface-strong);
  font-size: 13px;
  font-weight: 900;
}
.traffic-stats > div:nth-child(2) { border-color: var(--tibumo-green); }
.traffic-stats > div:nth-child(3) { border-color: var(--tibumo-purple); }
.traffic-stats strong {
  display: block;
  font-family: var(--brand-font);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.traffic-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.traffic-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 230px;
  min-height: 56px;
  padding: 8px 13px;
  border: 0;
  border-radius: 6px;
  background: var(--tibumo-black);
  color: var(--tibumo-cream);
  font: inherit;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(26, 26, 26, 0.16);
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}
.traffic-store__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.traffic-store__icon svg {
  width: 28px;
  height: 28px;
}
.traffic-store__text {
  text-align: left;
}
.traffic-store__small,
.traffic-store__name {
  display: block;
}
.traffic-store__small {
  color: rgba(249, 246, 241, 0.74);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
}
.traffic-store__name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}
a.traffic-store:hover {
  background: var(--tibumo-purple);
  color: white;
  box-shadow: 0 3px 8px rgba(26, 26, 26, 0.2);
}
.traffic-store--disabled,
.traffic-store--disabled:hover {
  cursor: default;
  opacity: 0.72;
}
.traffic-steps,
.traffic-parent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.traffic-steps article,
.traffic-parent-grid article {
  padding: 24px;
  border-top: 5px solid var(--tibumo-blue);
  background: var(--traffic-surface-strong);
}
.traffic-steps article:nth-child(2) { border-color: var(--tibumo-orange); }
.traffic-steps article:nth-child(3) { border-color: var(--tibumo-green); }
.traffic-steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--tibumo-blue);
  color: white;
  font-weight: 900;
}
.traffic-steps article:nth-child(2) span { background: var(--tibumo-orange); }
.traffic-steps article:nth-child(3) span { background: var(--tibumo-green); }
.traffic-steps h3,
.traffic-parent-grid h3,
.traffic-world h3 {
  margin: 0 0 8px;
  color: var(--tibumo-black);
  font-size: 22px;
  font-weight: 900;
}
.traffic-steps p,
.traffic-parent-grid p,
.traffic-world p {
  margin: 0;
  color: var(--traffic-muted);
  font-weight: 700;
}
.traffic-world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.traffic-world {
  overflow: hidden;
  border-top: 6px solid var(--tibumo-green);
  background: var(--traffic-surface-strong);
}
.traffic-world--racing { border-color: var(--tibumo-orange); }
.traffic-world--space { border-color: var(--tibumo-purple); }
.traffic-world picture,
.traffic-world img {
  display: block;
  width: 100%;
}
.traffic-world img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.traffic-world__body {
  padding: 22px;
}
.traffic-world ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.traffic-world li {
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(26, 26, 26, 0.055);
  font-size: 12px;
  font-weight: 900;
}
.traffic-gallery {
  overflow: hidden;
}
.traffic-gallery__shell {
  outline: none;
}
.traffic-gallery__viewport {
  min-height: 620px;
}
.traffic-gallery__slide {
  margin: 0;
}
.traffic-gallery__slide[hidden] {
  display: none;
}
.traffic-gallery__devices {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 36px;
  background: #22212a;
}
.traffic-gallery__phone {
  width: min(100%, 330px);
  height: auto;
  margin-inline: auto;
  aspect-ratio: 660 / 1434;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.24));
}
.traffic-gallery__tablet {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.24));
}
.traffic-gallery figcaption {
  padding: 14px 18px;
  background: var(--traffic-surface-strong);
  font-weight: 900;
  text-align: center;
}
.traffic-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.traffic-gallery__controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 6px;
  background: var(--traffic-surface-strong);
  color: var(--tibumo-orange);
  box-shadow: 0 1px 4px rgba(26, 26, 26, 0.14);
  font-size: 28px;
  font-weight: 900;
}
.traffic-gallery__dots {
  display: flex;
  gap: 8px;
}
.traffic-gallery__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.25);
  box-shadow: none;
}
.traffic-gallery__dots button[aria-current="true"] {
  background: var(--tibumo-orange);
}
.traffic-parent-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.traffic-parent-grid article:nth-child(2) { border-color: var(--tibumo-orange); }
.traffic-parent-grid article:nth-child(3) { border-color: var(--tibumo-green); }
.traffic-parent-grid article:nth-child(4) { border-color: var(--tibumo-purple); }
.traffic-final {
  background: var(--tibumo-orange);
}
.traffic-final__inner {
  padding: 48px;
  background: var(--tibumo-cream);
}
.traffic-final__inner p {
  margin-top: 16px;
  color: var(--traffic-muted);
  font-size: 19px;
  font-weight: 800;
}
.traffic-legal {
  padding: calc(var(--site-nav-height, 72px) + 72px) 0 104px;
}
.traffic-legal__inner {
  max-width: 900px;
}
.traffic-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--tibumo-orange);
  font-weight: 900;
}
.traffic-legal__updated {
  margin: 14px 0 36px;
  color: var(--traffic-muted);
  font-weight: 800;
}
.traffic-legal__content {
  padding: clamp(24px, 5vw, 48px);
  background: var(--traffic-surface-strong);
}
.traffic-legal__content h2 {
  margin: 34px 0 12px;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 900;
}
.traffic-legal__content h2:first-child {
  margin-top: 0;
}
.traffic-legal__content p,
.traffic-legal__content dd {
  color: var(--traffic-muted);
  font-size: 17px;
  font-weight: 700;
}
.traffic-legal__content dl {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 10px 24px;
}
.traffic-legal__content dt {
  font-weight: 900;
}
:root[data-theme="dark"] .traffic-page {
  --traffic-surface: #222222;
  --traffic-surface-strong: #2e2e2e;
  --traffic-muted: rgba(249, 246, 241, 0.76);
  --traffic-line: rgba(249, 246, 241, 0.14);
  background: #1a1a1a;
  color: var(--tibumo-cream);
}
:root[data-theme="dark"] :is(.traffic-hero, .traffic-final__inner) { background: #1a1a1a; }
:root[data-theme="dark"] :is(.traffic-section h2, .traffic-hero h1, .traffic-legal h1, .traffic-steps h3, .traffic-parent-grid h3, .traffic-world h3) { color: var(--tibumo-cream); }
:root[data-theme="dark"] .traffic-world li { background: rgba(249, 246, 241, 0.08); }
:root[data-theme="dark"] .traffic-store { background: #303030; }
:root[data-theme="dark"] :is(.traffic-hero__tagline, .traffic-promo) { color: #c9a7f0; }
:root[data-theme="dark"] .traffic-gallery__dots button { background: rgba(249, 246, 241, 0.3); }
:root[data-theme="dark"] .traffic-gallery__dots button[aria-current="true"] { background: var(--tibumo-yellow); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .traffic-page {
    --traffic-surface: #222222;
    --traffic-surface-strong: #2e2e2e;
    --traffic-muted: rgba(249, 246, 241, 0.76);
    --traffic-line: rgba(249, 246, 241, 0.14);
    background: #1a1a1a;
    color: var(--tibumo-cream);
  }
  :root:not([data-theme="light"]) .traffic-hero,
  :root:not([data-theme="light"]) .traffic-final__inner {
    background: #1a1a1a;
  }
  :root:not([data-theme="light"]) .traffic-section h2,
  :root:not([data-theme="light"]) .traffic-hero h1,
  :root:not([data-theme="light"]) .traffic-legal h1,
  :root:not([data-theme="light"]) .traffic-steps h3,
  :root:not([data-theme="light"]) .traffic-parent-grid h3,
  :root:not([data-theme="light"]) .traffic-world h3 {
    color: var(--tibumo-cream);
  }
  :root:not([data-theme="light"]) .traffic-world li {
    background: rgba(249, 246, 241, 0.08);
  }
  :root:not([data-theme="light"]) .traffic-store {
    background: #303030;
  }
  :root:not([data-theme="light"]) :is(.traffic-hero__tagline, .traffic-promo) {
    color: #c9a7f0;
  }
  :root:not([data-theme="light"]) .traffic-gallery__dots button {
    background: rgba(249, 246, 241, 0.3);
  }
  :root:not([data-theme="light"]) .traffic-gallery__dots button[aria-current="true"] {
    background: var(--tibumo-yellow);
  }
}
@media (max-width: 980px) {
  .traffic-hero__grid {
    grid-template-columns: 1fr;
  }
  .traffic-hero__art {
    max-width: 760px;
  }
  .traffic-world-grid {
    grid-template-columns: 1fr;
  }
  .traffic-world {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  }
}
@media (max-width: 700px) {
  .traffic-container {
    width: min(100% - 28px, 1180px);
  }
  .traffic-section,
  .traffic-hero,
  .traffic-legal {
    padding: 64px 0;
  }
  .traffic-hero,
  .traffic-legal {
    padding-top: calc(var(--site-nav-height, 72px) + 48px);
  }
  .traffic-hero__identity {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
  }
  .traffic-hero__identity picture,
  .traffic-hero__identity img {
    width: 78px;
    height: 78px;
    border-radius: 16px;
  }
  .traffic-stats,
  .traffic-steps,
  .traffic-parent-grid {
    grid-template-columns: 1fr;
  }
  .traffic-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .traffic-stats > div {
    padding: 10px 8px;
  }
  .traffic-stats strong {
    font-size: 25px;
  }
  .traffic-world {
    display: block;
  }
  .traffic-gallery__viewport {
    min-height: 0;
  }
  .traffic-gallery__devices {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .traffic-gallery__phone {
    width: min(62vw, 280px);
  }
  .traffic-gallery__tablet {
    width: 100%;
  }
  .traffic-final__inner {
    padding: 30px 22px;
  }
  .traffic-legal__content dl {
    grid-template-columns: 1fr;
  }
  .traffic-legal__content dd + dt {
    margin-top: 12px;
  }
}
@media (max-width: 430px) {
  .traffic-section h2,
  .traffic-legal h1 {
    font-size: 48px;
  }
  .traffic-hero h1 {
    font-size: 35px;
  }
  .traffic-stores {
    display: grid;
    grid-template-columns: 1fr;
  }
  .traffic-store {
    width: min(100%, 320px);
    min-width: 230px;
  }
}
@media (min-width: 431px) and (max-width: 640px) {
  .traffic-store {
    width: min(100%, 320px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .traffic-page * {
    scroll-behavior: auto;
  }
}
