@font-face {
  font-family: "Basel Grotesk";
  src: url("assets/fonts/Basel-Grotesk-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Basel Grotesk";
  src: url("assets/fonts/Basel-Grotesk-Medium.woff2") format("woff2");
  font-weight: 500;
}

:root {
  --ink: #060707;
  --muted: #7a747f;
  --line: #bdb7c2;
  --paper: #fff;
  --pale: #f7f4f8;
  --pink: #ff00fb;
  --violet: #d55cf4;
  --blue: #4117ff;
  --purple: #7a1b78;
  --section-pad: clamp(58px, 8vw, 118px);
  --slide-counter-safe-bottom: calc(clamp(18px, 3vw, 30px) + 39px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --home-bg:
    radial-gradient(circle at 18% 6%, rgba(255, 255, 255, 0.48), transparent 25%),
    radial-gradient(circle at 84% 80%, rgba(65, 23, 255, 0.13), transparent 38%),
    linear-gradient(126deg, #f9a8de 0%, #e99ee8 34%, #d7bdff 68%, #b8cbff 100%);
}

@property --route-shift {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

html.slides-booting,
html.slides-booting body {
  height: 100%;
  overflow: hidden;
}

html.slides-booting main {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--home-bg);
}

html.slides-booting main > section {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
}

html.slides-booting main > section:first-child {
  visibility: visible;
  opacity: 1;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Basel Grotesk", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.slide-mode {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--home-bg);
}

button,
a {
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  --header-x: clamp(18px, 4vw, 42px);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px var(--header-x);
  pointer-events: none;
  transition: padding 220ms ease, opacity 220ms ease;
  animation: headerFadeDown 760ms var(--ease) both;
}

.site-header:not(.is-top) {
  padding-top: 24px;
}

.brand,
.nav-links {
  position: relative;
  z-index: 101;
  pointer-events: auto;
}

body[data-active-slide="plan"] .brand,
.site-header:not(.is-top) .brand,
.site-header:not(.is-top) .brand * {
  pointer-events: none !important;
}

.route-logo {
  --origin-w: clamp(122px, 13.5vw, 236px);
  --line-start: clamp(132px, 15vw, 266px);
  --line-y: clamp(112px, 11vw, 180px);
  --destination-w: clamp(128px, 16vw, 250px);
  position: relative;
  display: block;
  width: calc(100vw - (var(--header-x) * 2));
  height: clamp(160px, 16vw, 250px);
  color: var(--ink);
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.45));
}

.route-origin {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--origin-w);
  height: 100%;
}

.route-origin::before,
.route-origin::after {
  content: "";
  position: absolute;
  border: clamp(2px, 0.26vw, 4px) solid currentColor;
  pointer-events: none;
}

.route-origin::before {
  top: 29%;
  right: -12%;
  width: 23%;
  height: 33%;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.route-origin::after {
  top: 57%;
  left: 32%;
  width: 31%;
  height: 28%;
  border-right: 0;
  border-radius: 999px 0 0 999px;
}

.route-word {
  position: absolute;
  display: block;
  width: max-content;
  padding: 0.04em 0.16em 0.08em;
  border: clamp(2px, 0.26vw, 4px) solid currentColor;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(28px, 4.1vw, 72px);
  line-height: 0.92;
  white-space: nowrap;
}

.route-word-marche {
  top: 0;
  left: 0;
}

.route-word-au {
  top: 34%;
  left: 49%;
  translate: -50% 0;
}

.route-word-frais {
  top: 70%;
  left: 46%;
  translate: -50% 0;
}

.route-line {
  position: absolute;
  top: var(--line-y);
  left: var(--line-start);
  width: max(24px, calc(50vw - var(--header-x) - var(--line-start) - (var(--destination-w) / 2) + 2px));
  height: clamp(2px, 0.24vw, 4px);
  background: currentColor;
}

.route-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: clamp(14px, 1.8vw, 28px);
  height: clamp(14px, 1.8vw, 28px);
  border-top: clamp(2px, 0.24vw, 4px) solid currentColor;
  border-right: clamp(2px, 0.24vw, 4px) solid currentColor;
  transform: translate(1px, -50%) rotate(45deg);
  background: transparent;
}

.route-destination {
  position: absolute;
  top: calc(var(--line-y) - clamp(28px, 3.45vw, 56px));
  left: calc(50vw - var(--header-x));
  width: var(--destination-w);
  translate: -50% 0;
  padding: 0.04em 0.16em 0.08em;
  border: clamp(2px, 0.26vw, 4px) solid currentColor;
  background: rgba(255, 255, 255, 0.78);
  font-size: clamp(28px, 4.1vw, 72px);
  line-height: 0.92;
  text-align: center;
  white-space: nowrap;
}

.route-logo {
  --route-h: clamp(74px, 7vw, 112px);
  --route-collapse-offset: max(0px, calc(50vw - var(--header-x) - 1.712em - 20px));
  --route-shift: 0px;
  --route-img-h: clamp(1em, calc(0.695em + 5.8vw), 1.18em);
  --route-left-w: calc(var(--route-img-h) * 1.1091954);
  --route-right-x: calc(50vw - var(--header-x) - 0.606em - var(--route-shift));
  --route-line-end: calc(var(--route-right-x) + max(0.5px, 0.006em));
  height: var(--route-h);
  font-size: var(--route-h);
  transition: --route-shift 900ms var(--ease), height 520ms var(--ease), font-size 520ms var(--ease);
}

.route-left-img,
.route-mid-line,
.route-right-img {
  position: absolute;
  top: 0;
  height: var(--route-img-h);
  max-width: none;
  display: block;
}

.route-left-img,
.route-right-img {
  z-index: 2;
  width: auto;
}

.route-left-img {
  left: 0;
}

.route-right-img {
  left: var(--route-right-x);
}

.route-right-menu-label {
  position: absolute;
  top: 0.735em;
  left: calc(var(--route-right-x) + 0.19em);
  z-index: 2;
  width: 0.84em;
  height: 0.205em;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  font-size: 1em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.route-right-menu-label::after {
  content: "Menu";
  font-size: 0.19em;
  line-height: 1;
  transform: translateY(-0.01em);
}

.mobile-menu-open .route-right-menu-label {
  opacity: 1;
}

.route-mid-line {
  z-index: 1;
  left: var(--route-left-w);
  width: max(0px, calc(var(--route-line-end) - var(--route-left-w)));
  object-fit: fill;
  pointer-events: none;
}

body.is-resizing .route-logo,
body.is-resizing .route-right-menu-label,
body.is-resizing .route-mid-line {
  transition: none !important;
}

.site-header.logo-collapsed .route-logo {
  --route-shift: var(--route-collapse-offset);
}

.mobile-menu-open .site-header.logo-collapsed .route-logo {
  --route-shift: 0px;
}

.site-header:not(.intro-complete) .route-logo {
  animation: routeRightEnter 1200ms var(--ease) 820ms both;
}

.site-header.logo-collapsed .route-logo {
  animation-name: none;
}

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

@keyframes routeRightEnter {
  from {
    --route-shift: var(--route-collapse-offset);
  }
  to {
    --route-shift: 0px;
  }
}

.nav-links {
  position: fixed;
  top: 24px;
  right: var(--header-x);
  z-index: 102;
  display: grid;
  gap: 4px;
  justify-items: end;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 0.96;
}

.site-header:not(.is-top) .nav-links {
  top: 24px;
}

.nav-links a {
  --band-start: rgba(249, 168, 222, 0.14);
  --band-end: rgba(249, 168, 222, 0.68);
  --nav-shift: 0px;
  --band-scale: 0;
  position: relative;
  z-index: 0;
  isolation: isolate;
  opacity: 0.74;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: calc(var(--header-x) * -1);
  top: 50%;
  width: calc(100% + var(--header-x) + 22px);
  height: 1em;
  background: linear-gradient(90deg, var(--band-start), var(--band-end));
  opacity: calc(var(--band-scale) * 0.62);
  transform: translate(var(--nav-shift), -50%) scaleX(var(--band-scale));
  transform-origin: right center;
  transition:
    opacity 80ms ease,
    transform 1250ms cubic-bezier(.08, .78, .12, 1);
  pointer-events: none;
}

.nav-links a:nth-child(2) {
  --band-start: rgba(233, 158, 232, 0.14);
  --band-end: rgba(233, 158, 232, 0.68);
}

.nav-links a:nth-child(3) {
  --band-start: rgba(218, 171, 247, 0.14);
  --band-end: rgba(218, 171, 247, 0.68);
}

.nav-links a:nth-child(4) {
  --band-start: rgba(215, 189, 255, 0.14);
  --band-end: rgba(215, 189, 255, 0.68);
}

.nav-links a:nth-child(5) {
  --band-start: rgba(199, 196, 255, 0.14);
  --band-end: rgba(199, 196, 255, 0.68);
}

.nav-links a:nth-child(6) {
  --band-start: rgba(184, 203, 255, 0.14);
  --band-end: rgba(184, 203, 255, 0.68);
}

.nav-links a:hover,
.nav-links a.active {
  --nav-shift: 7px;
  --band-scale: 1;
  opacity: 1;
  transform: translateX(-7px);
}

.site-header.is-top .nav-links a.active {
  transform: none;
}

.nav-links a::after {
  content: "°";
  position: absolute;
  top: 50%;
  right: -14px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  font-size: 1.06em;
  line-height: 1;
  transform: translateY(-48%) scale(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.site-header.is-top .nav-links a.active::after {
  opacity: 0;
  transform: translateY(-50%) scale(0.6);
}

.mobile-menu-toggle,
.mobile-nav-panel {
  display: none;
}

.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: var(--header-x);
  z-index: 1002;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  pointer-events: auto;
}

.mobile-menu-lines {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.mobile-menu-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: top 260ms var(--ease), transform 320ms var(--ease), opacity 180ms ease;
}

.mobile-menu-lines span:nth-child(1) {
  top: 0;
}

.mobile-menu-lines span:nth-child(2) {
  top: 7px;
}

.mobile-menu-lines span:nth-child(3) {
  top: 14px;
}

.mobile-menu-open .mobile-menu-toggle {
  color: var(--ink);
}

.mobile-menu-open .mobile-menu-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.mobile-menu-open .mobile-menu-lines span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .mobile-menu-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 1001;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  background: var(--home-bg);
  color: var(--ink);
  pointer-events: none;
  opacity: 1;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 420ms var(--ease);
}

.mobile-nav-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36) 1px, transparent 1px);
  background-size: 9px 9px;
  mix-blend-mode: multiply;
}

.mobile-menu-open .mobile-nav-panel {
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 96px 16px 34px;
}

.mobile-nav-links a {
  position: relative;
  display: flex;
  width: fit-content;
  min-width: 168px;
  max-width: min(72vw, 270px);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 20px;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  transition: background 180ms ease, transform 180ms ease;
}

.mobile-nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 2px solid var(--ink);
  background: #fff;
  pointer-events: none;
}

.mobile-nav-links a::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  width: 48px;
  height: calc(100% + 16px + 4px);
  border: 2px solid var(--ink);
  pointer-events: none;
}

.mobile-nav-links a span {
  position: relative;
  z-index: 2;
}

.mobile-nav-links a:nth-child(odd)::after {
  left: -30px;
  border-right: 0;
  border-radius: 999px 0 0 999px;
}

.mobile-nav-links a:nth-child(even)::after {
  right: -30px;
  border-left: 0;
  border-radius: 0 999px 999px 0;
}

.mobile-nav-links a:last-child::after {
  content: none;
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  transform: scale(1.015);
}

.mobile-nav-links small {
  display: none;
}

.gradient-band,
.gradient-panel {
  background: var(--home-bg);
}

.curtain-stage {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--home-bg);
}

.curtain-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding-bottom: var(--slide-counter-safe-bottom);
  opacity: 0;
  pointer-events: none;
  will-change: auto;
  scrollbar-width: none;
  background: var(--paper);
}

.curtain-slide.gradient-panel {
  background: var(--home-bg);
}

.curtain-slide::-webkit-scrollbar {
  display: none;
}

.curtain-slide.is-active,
.curtain-slide.is-leaving,
.curtain-slide.is-entering {
  pointer-events: auto;
}

.curtain-slide.is-active {
  opacity: 1;
  z-index: 15;
}

.curtain-slide.is-leaving {
  z-index: 20;
  will-change: clip-path;
}

.curtain-slide.is-entering {
  z-index: 25;
  will-change: clip-path;
}

.curtain-slide.is-leaving > * {
  opacity: var(--slide-content-opacity, 1);
  transform: translate3d(0, var(--slide-content-y, 0), 0);
  will-change: opacity, transform;
}

.slide-counter {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  opacity: 0.6;
  pointer-events: none;
  font-size: 12px;
  line-height: 0.9;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.slide-counter-line {
  width: 18px;
  height: 1px;
  overflow: hidden;
  background: rgba(6, 7, 7, 0.18);
}

.slide-counter-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(6, 7, 7, 0.82);
  transform: scaleX(var(--progress, 1));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.slide-counter-total {
  opacity: 0.7;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px clamp(24px, 6vw, 88px) 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(6, 7, 7, 0.42);
  background: var(--paper);
}

.hero.gradient-band::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--home-bg);
}

.hero.gradient-band::before,
.hero.gradient-band::after {
  -webkit-mask-image: radial-gradient(circle at 0% 0%, #000 0 42%, rgba(0, 0, 0, 0.72) 56%, transparent 72%);
  mask-image: radial-gradient(circle at 0% 0%, #000 0 42%, rgba(0, 0, 0, 0.72) 56%, transparent 72%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-size: 0 0;
  mask-size: 0 0;
  animation: heroBackgroundReveal 8400ms cubic-bezier(.16, 1, .3, 1) 120ms both;
}

.hero::after,
.gradient-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36) 1px, transparent 1px);
  background-size: 9px 9px;
  mix-blend-mode: multiply;
}

.hero::after {
  z-index: 0;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(28px, 3.05vw, 41px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0;
  word-spacing: 0;
  hyphens: auto;
}

.hero-title {
  display: grid;
  gap: 1.06em;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(22px);
}

.hero.is-active .hero-title span:first-child {
  animation: heroTitleFadeUp 760ms var(--ease) 2100ms both;
}

.hero.is-active .hero-title span:last-child {
  animation: heroTitleFadeUp 760ms var(--ease) 3340ms both;
}

.hero-title.is-complete span,
.hero.is-active .hero-title.is-complete span {
  opacity: 1;
  transform: none;
  animation: none;
}

@keyframes heroBackgroundReveal {
  to {
    -webkit-mask-size: 165vmax 165vmax;
    mask-size: 165vmax 165vmax;
  }
}

@keyframes heroTitleFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-route {
  display: none;
  position: absolute;
  top: 61px;
  left: clamp(118px, 11.5vw, 158px);
  right: 48%;
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  gap: 0;
  font-size: 13px;
}

.hero-route span {
  width: max-content;
  padding: 3px 7px 2px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--ink);
  line-height: 1;
}

.hero-route span:nth-child(2),
.hero-route span:nth-child(3) {
  display: none;
}

.hero-route span:first-child {
  display: none;
}

.hero-route i {
  grid-column: 1;
  grid-row: 1;
  display: block;
  height: 1px;
  background: var(--ink);
  opacity: 0.82;
  position: relative;
}

.hero-route i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.hero-route span:last-child {
  grid-column: 2;
  grid-row: 1;
}

.map-section {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  min-height: 100%;
  border-top: 1px solid rgba(6, 7, 7, 0.26);
  border-bottom: 1px solid rgba(6, 7, 7, 0.32);
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.map-section::after {
  content: none;
}

.jonction-map {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #f7f7f7;
}

.map-section {
  overflow: hidden;
}

.jonction-map-embed {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0;
  background: #f7f7f7;
}

body.is-slide-transitioning .jonction-map-embed {
  pointer-events: none;
}

.jonction-map-embed:not(.is-ready) {
  pointer-events: none;
}

.jonction-map-embed:not(.is-requested) {
  visibility: hidden;
}

.map-section:not(.is-active):not(.is-entering):not(.is-leaving) .jonction-map-embed {
  visibility: hidden;
  pointer-events: none;
}

.jonction-map-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
  border: 0;
  background: #f7f7f7;
}

.map-grid {
  position: absolute;
  inset: -10%;
  opacity: 0.45;
  background-image:
    linear-gradient(30deg, transparent 42%, #dedede 42% 48%, transparent 48%),
    linear-gradient(150deg, transparent 46%, #e5e5e5 46% 50%, transparent 50%);
  background-size: 180px 120px;
}

.map-dot {
  position: absolute;
  width: 25px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--purple);
  cursor: pointer;
}

.map-dot::after {
  content: attr(data-module);
  position: absolute;
  left: 50%;
  bottom: 130%;
  translate: -50% 0;
  min-width: max-content;
  color: var(--purple);
  opacity: 0;
  transition: opacity 180ms ease, translate 180ms ease;
}

.map-dot:hover::after,
.map-dot:focus-visible::after {
  opacity: 1;
  translate: -50% -6px;
}

.dot-one { left: 16%; top: 47%; }
.dot-two { left: 45%; top: 31%; }
.dot-three { left: 67%; top: 34%; }
.dot-four { left: 53%; top: 48%; }
.dot-five { left: 36%; top: 58%; }
.dot-six { left: 66%; top: 62%; }
.dot-seven { left: 52%; top: 70%; }

.embed-preview {
  position: absolute;
  right: clamp(24px, 9vw, 150px);
  top: 13%;
  width: min(38vw, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(213, 92, 244, 0.28);
  text-align: center;
}

.embed-preview p {
  position: absolute;
  bottom: 17%;
  margin: 0;
  color: var(--purple);
}

.phone-rotate-overlay {
  display: none;
}

.phone-rotate-overlay.is-disabled {
  display: none !important;
  pointer-events: none !important;
}

.module-model {
  position: relative;
  width: 44%;
  aspect-ratio: 1.65;
  transform: skewY(-9deg);
  border: 2px solid rgba(6, 7, 7, 0.55);
  background:
    linear-gradient(90deg, rgba(6, 7, 7, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(6, 7, 7, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.55);
  background-size: 22px 22px;
  box-shadow: -34px 28px 0 rgba(6, 7, 7, 0.14);
}

.module-model span {
  position: absolute;
  border: 2px solid rgba(6, 7, 7, 0.44);
}

.module-model span:nth-child(1) {
  inset: -34% 12% auto 12%;
  height: 35%;
}

.module-model span:nth-child(2) {
  left: -22%;
  bottom: -18%;
  width: 30%;
  height: 55%;
  background: rgba(6, 7, 7, 0.22);
}

.module-model span:nth-child(3) {
  right: -20%;
  bottom: -15%;
  width: 34%;
  height: 48%;
  background: rgba(6, 7, 7, 0.13);
}

.weather-strip {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(170px, 1fr));
  align-items: end;
  gap: clamp(18px, 5vw, 72px);
  padding: 76px clamp(24px, 8vw, 120px);
  text-align: center;
  border-bottom: 1px solid rgba(6, 7, 7, 0.3);
  min-height: 100svh;
}

.map-section .weather-strip {
  position: relative;
  z-index: 8;
  width: 100%;
  min-height: auto;
  padding: clamp(22px, 3vw, 44px) clamp(24px, 8vw, 120px) max(clamp(24px, 3.5vw, 52px), var(--slide-counter-safe-bottom));
  align-items: center;
  border: 0;
  border-top: 1px solid rgba(6, 7, 7, 0.24);
  border-radius: 0;
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  pointer-events: none;
}

.map-section .weather-strip > * {
  --weather-item-index: 0;
}

.map-section .weather-strip.is-panel-switching {
  overflow: hidden;
}

.map-section .weather-strip > .weather-item-out {
  animation: weatherPanelItemOut 320ms var(--ease) both;
}

.map-section .weather-strip > .weather-item-in {
  animation: weatherPanelItemIn 360ms var(--ease) both;
}

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

@keyframes weatherPanelItemIn {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-section .metric strong {
  font-size: clamp(42px, 5.4vw, 74px);
}

.map-section .metric span {
  font-size: clamp(26px, 3.3vw, 44px);
}

.place-date {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.1;
}

.weather-module-empty {
  margin: 0;
  color: rgba(6, 7, 7, 0.62);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.2;
  text-align: center;
}

.weather-module-empty-metric {
  justify-content: center;
  color: rgba(6, 7, 7, 0.58);
}

.weather-module-empty-metric strong {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
}

.weather-module-empty-metric small {
  max-width: 11em;
  font-size: clamp(11px, 0.95vw, 14px);
  line-height: 1.1;
}

.weather-module-empty-metric[aria-hidden="true"] {
  visibility: hidden;
}

.weather-module-action {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.weather-module-action-slot {
  display: none;
}

.weather-module-action.is-waiting {
  opacity: 1;
  cursor: default;
}

.weather-module-action-content {
  display: inline-grid;
  grid-area: 1 / 1;
  place-items: center;
}

.weather-module-action.is-rolling {
  position: relative;
}

.weather-module-action.is-rolling .weather-module-action-content {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% 0;
}

.weather-module-action-content.is-pending {
  opacity: 0;
}

.weather-module-action-content.is-leaving {
  will-change: transform, opacity;
  animation: weather-module-action-roll-out 320ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.weather-module-action-content.is-entering {
  will-change: transform, opacity;
  animation: weather-module-action-roll-in 320ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes weather-module-action-roll-out {
  from {
    opacity: 1;
    transform: translateY(-50%);
  }

  to {
    opacity: 0;
    transform: translateY(25%);
  }
}

@keyframes weather-module-action-roll-in {
  from {
    opacity: 0;
    transform: translateY(-125%);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.weather-module-eye {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(6, 7, 7, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(6, 7, 7, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.weather-module-eye svg {
  width: 48%;
  height: 48%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.weather-module-action:hover .weather-module-eye,
.weather-module-action:focus-visible .weather-module-eye {
  border-color: rgba(65, 23, 255, 0.55);
  background: rgba(234, 212, 237, 0.88);
  color: var(--blue);
  box-shadow: 0 10px 34px rgba(65, 23, 255, 0.14);
  transform: translateY(-1px);
}

.weather-module-action:focus-visible {
  outline: 0;
}

.weather-module-action:focus-visible .weather-module-eye {
  outline: 2px solid rgba(65, 23, 255, 0.34);
  outline-offset: 3px;
}

.metric {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: start;
  column-gap: 4px;
  row-gap: 2px;
}

.metric strong {
  grid-row: 1 / span 2;
  grid-column: 1;
  font-size: clamp(62px, 8.5vw, 122px);
  line-height: 0.85;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.metric span {
  grid-row: 1;
  grid-column: 2;
  font-size: clamp(36px, 5vw, 74px);
  line-height: 0.8;
}

.metric small {
  grid-row: 2;
  grid-column: 2;
  align-self: start;
  margin-left: 1px;
  font-size: 13px;
  text-align: left;
  color: currentColor;
  opacity: 0.86;
}

.metric-blue {
  color: var(--blue);
}

.metric-pink {
  color: var(--violet);
}

.map-section .weather-strip.module-frequency-panel {
  grid-template-columns: minmax(150px, 0.72fr) minmax(0, 3fr);
  gap: clamp(14px, 3vw, 42px);
  align-items: center;
  padding-top: clamp(16px, 2.4vw, 34px);
  padding-bottom: clamp(16px, 2.8vw, 38px);
}

.weather-module-title {
  margin: 0;
  text-align: left;
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1.02;
}

.weather-module-title span {
  opacity: 0.72;
}

.weather-frequency-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(10px, 2.6vw, 38px);
}

.weather-frequency-card {
  --animated-progress: 0;
  --ring-axis: clamp(58px, 6.1vw, 104px);
  --ring-thickness: clamp(5px, 0.52vw, 8px);
  --dash-stroke: 1.25px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(9px, 1vw, 14px);
}

.weather-frequency-card::before {
  content: "";
  width: calc(var(--ring-axis) + var(--ring-thickness));
  aspect-ratio: 1;
  grid-area: 1 / 1;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      #d85df8 0%,
      #bf58fa calc(var(--animated-progress) * 0.52%),
      #764dff calc(var(--animated-progress) * 1%),
      transparent calc(var(--animated-progress) * 1%) 100%
    );
  -webkit-mask: radial-gradient(
    circle,
    transparent 0 calc((var(--ring-axis) - var(--ring-thickness)) / 2),
    #000 calc((var(--ring-axis) - var(--ring-thickness)) / 2 + 0.4px) calc((var(--ring-axis) + var(--ring-thickness)) / 2),
    transparent calc((var(--ring-axis) + var(--ring-thickness)) / 2 + 0.4px)
  );
  mask: radial-gradient(
    circle,
    transparent 0 calc((var(--ring-axis) - var(--ring-thickness)) / 2),
    #000 calc((var(--ring-axis) - var(--ring-thickness)) / 2 + 0.4px) calc((var(--ring-axis) + var(--ring-thickness)) / 2),
    transparent calc((var(--ring-axis) + var(--ring-thickness)) / 2 + 0.4px)
  );
}

.weather-frequency-card::after {
  content: "";
  width: calc(var(--ring-axis) + var(--dash-stroke));
  aspect-ratio: 1;
  grid-area: 1 / 1;
  border-radius: 50%;
  border: var(--dash-stroke) dashed rgba(6, 7, 7, 0.48);
  pointer-events: none;
}

.weather-frequency-card strong {
  grid-area: 1 / 1;
  z-index: 1;
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 0.88;
  font-variant-numeric: tabular-nums;
}

.weather-frequency-card span {
  text-align: center;
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.08;
}

.data-section {
  position: relative;
  padding: clamp(92px, 11vw, 148px) clamp(24px, 8vw, 120px) max(clamp(96px, 10vw, 142px), var(--slide-counter-safe-bottom));
  border-top: 1px solid rgba(6, 7, 7, 0.3);
  border-bottom: 1px solid rgba(6, 7, 7, 0.35);
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  align-content: center;
}

.data-section h2,
.module-section h2,
.experience-section h2,
.partners-section h2,
.contact-section h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.1;
  font-weight: 400;
}

.data-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: center;
  gap: clamp(62px, 9vw, 150px);
  max-width: 1180px;
  margin: clamp(76px, 9vw, 118px) auto 0;
}

.stacked-metrics p {
  display: grid;
  grid-template-columns: var(--metric-number-width, 260px) var(--metric-label-width, 132px);
  align-items: center;
  column-gap: var(--metric-column-gap, 16px);
  margin: 0 0 clamp(18px, 2.4vw, 32px);
}

.stacked-metrics strong {
  font-size: clamp(70px, 9vw, 136px);
  line-height: 0.78;
  font-weight: 400;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stacked-metrics span {
  display: inline-block;
  transform-origin: 0 50%;
}

.stacked-metrics p.value-pop {
  animation: none;
  transform-origin: 50% 50%;
}

.stacked-metrics span {
  font-size: 13px;
  line-height: 1.02;
  max-width: var(--metric-label-width, 132px);
  transform: translateY(0);
}

.stacked-metrics:first-child {
  --metric-number-width: clamp(270px, 23vw, 380px);
  --metric-label-width: 126px;
  --metric-column-gap: clamp(18px, 2vw, 28px);
}

.stacked-metrics:last-child {
  --metric-number-width: clamp(360px, 32vw, 520px);
  --metric-label-width: 142px;
  --metric-column-gap: 22px;
}

.metric-row-steps strong {
  font-size: clamp(56px, 6.85vw, 92px);
}

.stacked-metrics:first-child .metric-row-wide strong {
  font-size: clamp(62px, 7.9vw, 118px);
}

@media (min-width: 861px) and (max-height: 660px) {
  .data-section {
    height: 100svh;
    min-height: 100svh;
    padding: clamp(72px, 14svh, 92px) clamp(24px, 7vw, 96px) clamp(32px, 7svh, 56px);
    align-content: center;
  }

  .data-section h2 {
    font-size: clamp(16px, 3.4svh, 21px);
  }

  .data-grid {
    gap: clamp(44px, 8vw, 110px);
    margin-top: clamp(26px, 6svh, 42px);
  }

  .stacked-metrics p {
    margin-bottom: clamp(10px, 2.4svh, 18px);
  }

  .stacked-metrics strong {
    font-size: clamp(42px, 10.5svh, 64px);
  }

  .stacked-metrics span {
    font-size: clamp(10px, 2.1svh, 12px);
  }

  .stacked-metrics:first-child {
    --metric-number-width: 176px;
    --metric-label-width: 96px;
    --metric-column-gap: 12px;
  }

  .stacked-metrics:first-child .metric-row-wide strong {
    font-size: clamp(38px, 8.8svh, 56px);
  }

  .stacked-metrics:last-child {
    --metric-number-width: 230px;
    --metric-label-width: 118px;
    --metric-column-gap: 14px;
  }
}

@media (min-width: 861px) and (max-width: 960px) {
  .data-section {
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: clamp(20px, 5vw, 48px);
  }

  .data-grid {
    width: min(100%, 620px);
    grid-template-columns: max-content max-content;
    gap: clamp(28px, 5vw, 48px);
  }

  .stacked-metrics strong {
    font-size: clamp(40px, 6.7vw, 60px);
  }

  .stacked-metrics span {
    font-size: 11px;
  }

  .stacked-metrics:first-child {
    --metric-number-width: 172px;
    --metric-label-width: 92px;
    --metric-column-gap: 10px;
  }

  .stacked-metrics:first-child .metric-row-wide strong {
    font-size: clamp(36px, 5.8vw, 52px);
  }

  .stacked-metrics:last-child {
    --metric-number-width: 216px;
    --metric-label-width: 108px;
    --metric-column-gap: 12px;
  }
}

.module-section {
  padding: clamp(150px, 14vw, 220px) 0 var(--slide-counter-safe-bottom);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.module-switcher {
  position: relative;
  display: flex;
  align-items: center;
  margin: 58px auto 0;
  width: min(1120px, calc(100% - clamp(48px, 10vw, 160px)));
}

.module-tabs {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 34px);
  border: 0;
  overflow: visible;
  padding: 0;
  align-items: end;
}

.module-tabs::before {
  content: "";
  position: absolute;
  left: clamp(24px, 2.8vw, 32px);
  right: clamp(24px, 2.8vw, 32px);
  top: 50%;
  border-top: 1.5px dashed rgba(6, 7, 7, 0.54);
  transform: translateY(-50%);
  pointer-events: none;
}

.module-tabs button {
  position: relative;
  z-index: 1;
  width: clamp(48px, 5.3vw, 66px);
  height: clamp(48px, 5.3vw, 66px);
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(13px, 1.22vw, 17px);
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.module-tabs button.active {
  background: #ead4ed;
  color: var(--blue);
  border-color: var(--blue);
  transform: scale(1.08);
}

.module-tabs button:hover {
  color: var(--blue);
  background: #f3e1f5;
  border-color: var(--blue);
}

body.is-mobile-portrait .module-tabs button,
body.is-mobile-landscape .module-tabs button {
  padding: 0;
  font-size: 0;
}

body.is-mobile-portrait .module-tabs button::after,
body.is-mobile-landscape .module-tabs button::after {
  content: attr(data-tab);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(17px, 5vw, 22px);
  line-height: 1;
}

.module-date {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 0.12em;
  margin: 28px 0 36px;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.08;
  text-align: center;
}

.module-current-date {
  margin: 8px 0 0;
  text-align: center;
  color: rgba(6, 7, 7, 0.68);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1;
}

.module-date-line {
  display: inline-block;
  white-space: nowrap;
}

.module-date-details {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45em;
}

.module-date-title {
  font-weight: 400;
}

.module-date-separator {
  color: rgba(6, 7, 7, 0.62);
}

#current-module {
  display: inline-block;
  min-width: 0.72em;
  text-align: center;
  will-change: transform, opacity;
}

.module-dashboard {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: 0 clamp(24px, 6vw, 92px) 58px;
}

.bar-chart {
  height: 320px;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  gap: 0;
  position: relative;
  padding: 56px 0 28px 46px;
  background: #fff;
}

.chart-legend {
  position: absolute;
  z-index: 6;
  top: 14px;
  left: 46px;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  color: rgba(6, 7, 7, 0.68);
  font-size: clamp(11px, 0.9vw, 14px);
  line-height: 1;
}

.chart-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.chart-legend-item i {
  display: inline-block;
  width: 20px;
  height: 10px;
  border-radius: 999px;
}

.chart-legend-reference i {
  height: 0;
  border-top: 2px solid rgba(6, 7, 7, 0.34);
  background: transparent;
  border-radius: 0;
}

.chart-legend-module i {
  background: linear-gradient(90deg, #f03dff, #7c55ff);
}

.bar-chart::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 46px;
  bottom: 56px;
  width: 1.5px;
  height: calc(100% - 112px);
  background: var(--ink);
}

.bar-chart::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 46px;
  right: 0;
  top: 56px;
  bottom: 56px;
  width: auto;
  height: auto;
  border: 0;
  background:
    linear-gradient(rgba(6, 7, 7, 0.08), rgba(6, 7, 7, 0.08)) 0 25% / 100% 1px no-repeat,
    linear-gradient(rgba(6, 7, 7, 0.08), rgba(6, 7, 7, 0.08)) 0 50% / 100% 1px no-repeat,
    linear-gradient(rgba(6, 7, 7, 0.08), rgba(6, 7, 7, 0.08)) 0 75% / 100% 1px no-repeat;
  pointer-events: none;
  transform: none;
}

.chart-col {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr 28px;
  align-items: end;
}

.chart-col::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 28px;
  width: 1px;
  background: rgba(6, 7, 7, 0.58);
}

.chart-col::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 28px;
  border-bottom: 2px solid var(--ink);
}

.chart-col:last-of-type {
  background:
    linear-gradient(rgba(6, 7, 7, 0.58), rgba(6, 7, 7, 0.58)) right top / 1px calc(100% - 28px) no-repeat;
}

.chart-y-axis {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 56px;
  bottom: 56px;
  width: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: clamp(10px, 0.86vw, 14px);
  line-height: 1;
  text-align: right;
}

.chart-y-axis li {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
}

.chart-y-axis li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 8px;
  height: 1px;
  background: var(--ink);
  transform: translateY(-50%);
}

.chart-y-axis li:nth-child(1) {
  top: 0;
}

.chart-y-axis li:nth-child(2) {
  top: 25%;
}

.chart-y-axis li:nth-child(3) {
  top: 50%;
}

.chart-y-axis li:nth-child(4) {
  top: 75%;
}

.chart-y-axis li:nth-child(5) {
  top: 100%;
}

.chart-y-axis li:nth-child(5)::after {
  content: none;
}

.bar-chart .hour-bar {
  position: relative;
  z-index: 2;
  grid-row: 1;
  grid-column: 1;
  width: min(64%, 42px);
  height: calc(var(--value) * 1%);
  justify-self: center;
  background: linear-gradient(180deg, rgba(242, 82, 255, 0.16), rgba(118, 71, 255, 0.82));
  box-shadow: 0 0 0 1px rgba(96, 67, 255, 0.2);
  transform-origin: bottom;
  animation: barRise 900ms var(--ease) both;
}

.bar-chart .pilot-hour-bar {
  z-index: 3;
  display: none;
  width: 100%;
  background: transparent;
  border-top: 1.5px solid rgba(6, 7, 7, 0.36);
  outline: 0;
  box-shadow: none;
  animation-duration: 700ms;
  justify-self: stretch;
}

.bar-chart .pilot-hour-bar::after {
  content: none;
}

.chart-reference-line-layer {
  position: absolute;
  z-index: 4;
  left: 46px;
  top: 56px;
  width: calc(100% - 46px);
  height: calc(100% - 112px);
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.chart-reference-line {
  fill: none;
  stroke: rgba(6, 7, 7, 0.34);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.bar-chart .module-hour-bar {
  z-index: 2;
  width: min(52%, 34px);
  border-radius: 2px 2px 0 0;
}

.bar-chart .module-hour-bar.is-empty {
  opacity: 0.18;
}

.module-dashboard.module-has-no-data .bar-chart .hour-bar {
  opacity: 0;
}

.module-dashboard.module-has-no-data .bar-chart::after {
  content: "no data";
  position: absolute;
  z-index: 5;
  left: calc(50% + 23px);
  top: 50%;
  width: auto;
  height: auto;
  border: 0;
  color: rgba(6, 7, 7, 0.48);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0;
  text-transform: lowercase;
  transform: translate(-50%, -50%);
}

.bar-chart small {
  grid-row: 2;
  grid-column: 1;
  align-self: start;
  justify-self: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(10px, 0.86vw, 14px);
  line-height: 1;
}

.chart-hour-unit {
  display: none;
}

.module-drawing {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.module-model.large {
  width: min(320px, 70%);
}

.module-image {
  display: block;
  width: auto;
  height: min(100%, 320px);
  max-width: 86%;
  object-fit: contain;
}

.module-dashboard .module-drawing {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.module-dashboard .module-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.module-dashboard .module-drawing p {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: max-content;
}

.module-drawing p {
  margin: 0;
  max-width: 330px;
  text-align: center;
  font-size: 13px;
}

.frequency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(6, 7, 7, 0.34);
  flex: 1;
  min-height: 300px;
  align-items: stretch;
}

.frequency-grid article {
  --animated-progress: 0;
  --ring-axis: clamp(154px, 12vw, 210px);
  --ring-thickness: clamp(8px, 0.7vw, 11px);
  --dash-stroke: 1.5px;
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 36px;
  border-right: 1px solid rgba(6, 7, 7, 0.22);
  transition: background 180ms ease;
}

.frequency-grid article:hover {
  background: #fbf8fc;
}

.frequency-grid article::before {
  content: "";
  width: calc(var(--ring-axis) + var(--ring-thickness));
  aspect-ratio: 1;
  grid-area: 1 / 1;
  border-radius: 50%;
  z-index: 1;
  background:
    conic-gradient(
      from 0deg,
      #d85df8 0%,
      #bf58fa calc(var(--animated-progress) * 0.52%),
      #764dff calc(var(--animated-progress) * 1%),
      transparent calc(var(--animated-progress) * 1%) 100%
    );
  -webkit-mask: radial-gradient(
    circle,
    transparent 0 calc((var(--ring-axis) - var(--ring-thickness)) / 2),
    #000 calc((var(--ring-axis) - var(--ring-thickness)) / 2 + 0.4px) calc((var(--ring-axis) + var(--ring-thickness)) / 2),
    transparent calc((var(--ring-axis) + var(--ring-thickness)) / 2 + 0.4px)
  );
  mask: radial-gradient(
    circle,
    transparent 0 calc((var(--ring-axis) - var(--ring-thickness)) / 2),
    #000 calc((var(--ring-axis) - var(--ring-thickness)) / 2 + 0.4px) calc((var(--ring-axis) + var(--ring-thickness)) / 2),
    transparent calc((var(--ring-axis) + var(--ring-thickness)) / 2 + 0.4px)
  );
}

.frequency-grid article::after {
  content: "";
  width: calc(var(--ring-axis) + var(--dash-stroke));
  aspect-ratio: 1;
  grid-area: 1 / 1;
  border-radius: 50%;
  border: var(--dash-stroke) dashed rgba(6, 7, 7, 0.48);
  pointer-events: none;
  z-index: 2;
}

.frequency-grid strong {
  grid-area: 1 / 1;
  z-index: 3;
  font-size: clamp(42px, 4.4vw, 72px);
  font-weight: 400;
  line-height: 0.88;
}

.frequency-grid span {
  text-align: center;
  font-size: 13px;
}

.frequency-grid article.is-no-data::before {
  background: transparent;
}

.frequency-grid.is-no-data {
  position: relative;
}

.frequency-grid.is-no-data::after {
  content: "no data";
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(6, 7, 7, 0.48);
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1;
  text-transform: lowercase;
  pointer-events: none;
}

.frequency-grid.is-no-data article > * {
  opacity: 0;
}

.frequency-grid article.is-no-data strong {
  width: min-content;
  max-width: 5.4em;
  color: rgba(6, 7, 7, 0.48);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 0.96;
  text-align: center;
  text-transform: lowercase;
}

@media (min-width: 861px) {
  .module-section {
    height: 100svh;
    padding-top: clamp(126px, 15.5svh, 190px);
  }

  .module-current-date {
    margin-top: clamp(4px, 0.9svh, 8px);
  }

  .module-switcher {
    margin-top: clamp(18px, 4svh, 48px);
  }

  .module-tabs button {
    width: clamp(42px, 6.2svh, 66px);
    height: clamp(42px, 6.2svh, 66px);
    font-size: clamp(12px, 1.55svh, 17px);
  }

  .module-tabs::before {
    left: clamp(20px, 3svh, 32px);
    right: clamp(20px, 3svh, 32px);
  }

  .module-date {
    margin: clamp(14px, 2.5svh, 30px) 0 clamp(16px, 3svh, 36px);
    font-size: clamp(14px, 2svh, 22px);
  }

  .module-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
    gap: clamp(18px, 4vw, 60px);
    align-items: stretch;
    padding: 0 clamp(24px, 5vw, 72px) clamp(10px, 1.8svh, 22px);
  }

  .bar-chart {
    height: 100%;
  }

  .module-model.large {
    width: min(clamp(180px, 28svh, 320px), 70%);
  }

  .module-image {
    height: min(100%, clamp(180px, 36svh, 420px));
    max-width: 92%;
  }

  .module-drawing {
    gap: clamp(10px, 2.2svh, 24px);
  }

  .frequency-grid {
    flex: 0 0 clamp(176px, 27svh, 260px);
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .frequency-grid article {
    --ring-axis: clamp(78px, 13.5svh, 146px);
    --ring-thickness: clamp(5px, 0.9svh, 10px);
    height: 100%;
    min-width: 0;
    overflow: hidden;
    gap: clamp(4px, 0.85svh, 12px);
  }

  .frequency-grid strong {
    font-size: clamp(36px, 7svh, 58px);
  }

  .frequency-grid span {
    font-size: clamp(10px, 1.55svh, 13px);
    line-height: 1.05;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .module-section {
    padding-top: clamp(132px, 19vh, 150px);
    height: 100svh;
  }

  .module-current-date {
    margin-top: 5px;
    font-size: 12px;
  }

  .module-switcher {
    margin-top: 24px;
    width: min(920px, calc(100% - clamp(48px, 10vw, 160px)));
  }

  .module-tabs {
    gap: clamp(8px, 1.4vw, 20px);
  }

  .module-tabs::before {
    left: clamp(18px, 2vw, 24px);
    right: clamp(18px, 2vw, 24px);
  }

  .module-tabs button {
    width: clamp(38px, 4vw, 48px);
    height: clamp(38px, 4vw, 48px);
    font-size: clamp(11px, 0.95vw, 14px);
  }

  .module-date {
    margin: 18px 0 20px;
    font-size: clamp(14px, 1.25vw, 17px);
  }

  .module-dashboard {
    gap: clamp(18px, 3vw, 44px);
    padding: 0 clamp(24px, 5vw, 72px) 18px;
  }

  .bar-chart {
    height: 100%;
    padding: 24px 0 22px 38px;
  }

  .bar-chart::before {
    left: 38px;
    bottom: 50px;
    height: calc(100% - 74px);
  }

  .bar-chart::after {
    left: 38px;
    top: 24px;
    bottom: 50px;
  }

  .chart-y-axis {
    top: 24px;
    bottom: 50px;
    width: 32px;
    font-size: 10px;
  }

  .chart-y-axis li::after {
    right: -11px;
    width: 6px;
  }

  .chart-col {
    grid-template-rows: 1fr 24px;
  }

  .chart-col::before,
  .chart-col::after {
    bottom: 24px;
  }

  .chart-col:last-of-type {
    background:
      linear-gradient(rgba(6, 7, 7, 0.58), rgba(6, 7, 7, 0.58)) right top / 1px calc(100% - 24px) no-repeat;
  }

  .bar-chart small {
    margin-top: 7px;
    font-size: 10px;
  }

  .bar-chart .hour-bar {
    width: min(58%, 30px);
  }

  .module-drawing {
    gap: 12px;
  }

  .module-model.large {
    width: min(220px, 62%);
  }

  .module-image {
    height: min(100%, clamp(170px, 32vh, 300px));
    max-width: 90%;
  }

  .module-drawing p {
    font-size: 12px;
  }

  .frequency-grid {
    flex: 0 0 clamp(150px, 24vh, 190px);
    min-height: 0;
  }

  .frequency-grid article {
    --ring-axis: clamp(70px, 7.2vw, 92px);
    --ring-thickness: clamp(6px, 0.62vw, 8px);
    height: 100%;
    gap: clamp(4px, 0.8vh, 7px);
  }

  .frequency-grid strong {
    font-size: clamp(24px, 2.4vw, 32px);
  }

  .frequency-grid span {
    font-size: 11px;
    line-height: 1.05;
  }
}

@media (min-width: 861px) and (max-height: 660px) {
  .module-section {
    padding-top: clamp(100px, 16vh, 112px);
  }

  .module-current-date {
    margin-top: 3px;
    font-size: 11px;
  }

  .module-switcher {
    margin-top: 12px;
    width: min(780px, calc(100% - 96px));
  }

  .module-tabs button {
    width: clamp(32px, 3.4vw, 38px);
    height: clamp(32px, 3.4vw, 38px);
    font-size: 10px;
  }

  .module-tabs::before {
    left: clamp(15px, 1.7vw, 19px);
    right: clamp(15px, 1.7vw, 19px);
  }

  .module-date {
    margin: 10px 0 12px;
    font-size: 13px;
  }

  .module-dashboard {
    padding-bottom: clamp(8px, 1.5svh, 10px);
  }

  .bar-chart {
    padding: 18px 0 18px 34px;
  }

  .bar-chart::before {
    left: 34px;
    bottom: 42px;
    height: calc(100% - 60px);
  }

  .chart-y-axis {
    top: 18px;
    bottom: 42px;
    width: 29px;
    font-size: 9px;
  }

  .chart-col {
    grid-template-rows: 1fr 20px;
  }

  .chart-col::before,
  .chart-col::after {
    bottom: 20px;
  }

  .chart-col:last-of-type {
    background:
      linear-gradient(rgba(6, 7, 7, 0.58), rgba(6, 7, 7, 0.58)) right top / 1px calc(100% - 20px) no-repeat;
  }

  .bar-chart small {
    margin-top: 5px;
    font-size: 9px;
  }

  .module-model.large {
    width: min(170px, 54%);
  }

  .module-image {
    height: min(100%, 170px);
    max-width: 72%;
  }

  .module-drawing {
    gap: 8px;
  }

  .module-drawing p {
    font-size: 11px;
  }

  .frequency-grid article {
    --ring-axis: clamp(56px, 6.2vh, 72px);
    --ring-thickness: 5px;
    gap: 4px;
  }

  .frequency-grid strong {
    font-size: clamp(20px, 2vw, 26px);
  }

  .frequency-grid span {
    font-size: 10px;
  }
}

.experience-section {
  position: relative;
  padding: clamp(148px, 20svh, 180px) clamp(16px, 4vw, 68px) max(74px, var(--slide-counter-safe-bottom));
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto minmax(72px, 1fr);
  align-content: start;
}

.experience-section h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto clamp(28px, 5svh, 44px);
}

.experience-title-main,
.experience-title-detail {
  display: block;
}

.experience-title-detail {
  margin-top: 0.35em;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.15;
}

.video-row {
  --card-offset: 0px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
  overflow: visible;
  padding-bottom: 8px;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: translateX(calc(var(--card-offset) * -1));
  transition: transform 620ms cubic-bezier(.16, 1, .3, 1);
  touch-action: pan-y;
}

.video-row.is-empty {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: clamp(220px, 38svh, 360px);
  border: 1px solid rgba(6, 7, 7, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  transform: none;
  transition: none;
}

.video-empty {
  margin: 0;
  color: rgba(6, 7, 7, 0.66);
  font-size: clamp(18px, 2vw, 26px);
}

.video-row article {
  flex: 0 0 calc((100% - 84px) / 4);
  min-height: clamp(300px, 44svh, 420px);
  position: relative;
  display: grid;
  align-items: end;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(6, 7, 7, 0.08)),
    linear-gradient(180deg, #c8dde0, #a37686 48%, #3c3538);
  backface-visibility: hidden;
  transform-origin: center right;
  will-change: transform, opacity;
}

.experience-section.cards-stacked .video-row article {
  opacity: 0;
  transform: translateX(52vw) rotateY(30deg) rotateZ(4deg) scale(1);
}

.experience-section:not(.is-active):not(.cards-dealing) .video-row article {
  opacity: 0;
  transform: translateX(52vw) rotateY(30deg) rotateZ(4deg) scale(1);
}

.experience-section.cards-stacked .video-row article:nth-child(2) {
  transform: translateX(calc(52vw - 14px)) rotateY(30deg) rotateZ(2.4deg) scale(0.982);
}

.experience-section:not(.is-active):not(.cards-dealing) .video-row article:nth-child(2) {
  transform: translateX(calc(52vw - 14px)) rotateY(30deg) rotateZ(2.4deg) scale(0.982);
}

.experience-section.cards-stacked .video-row article:nth-child(3) {
  transform: translateX(calc(52vw - 28px)) rotateY(30deg) rotateZ(0.8deg) scale(0.964);
}

.experience-section:not(.is-active):not(.cards-dealing) .video-row article:nth-child(3) {
  transform: translateX(calc(52vw - 28px)) rotateY(30deg) rotateZ(0.8deg) scale(0.964);
}

.experience-section.cards-stacked .video-row article:nth-child(4) {
  transform: translateX(calc(52vw - 42px)) rotateY(30deg) rotateZ(-0.8deg) scale(0.946);
}

.experience-section:not(.is-active):not(.cards-dealing) .video-row article:nth-child(4) {
  transform: translateX(calc(52vw - 42px)) rotateY(30deg) rotateZ(-0.8deg) scale(0.946);
}

.experience-section.cards-stacked .video-row article:nth-child(n + 5) {
  transform: translateX(calc(52vw - 56px)) rotateY(30deg) rotateZ(-2.4deg) scale(0.928);
}

.experience-section:not(.is-active):not(.cards-dealing) .video-row article:nth-child(n + 5) {
  transform: translateX(calc(52vw - 56px)) rotateY(30deg) rotateZ(-2.4deg) scale(0.928);
}

.experience-section.cards-animation-done:not(.cards-dealing) .video-row article,
.experience-section.cards-animation-done:not(.is-active):not(.cards-dealing) .video-row article:nth-child(n) {
  opacity: 1;
  transform: none;
}

.video-row article:nth-child(2) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(6, 7, 7, 0.08)),
    linear-gradient(180deg, #c7b093, #8b5e47 50%, #2e2422);
}

.video-row article:nth-child(3) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(6, 7, 7, 0.06)),
    linear-gradient(180deg, #d2d3cf, #8c8b86 50%, #262626);
}

.video-row article:nth-child(4) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(6, 7, 7, 0.09)),
    linear-gradient(180deg, #f0d5c8, #b66d5a 50%, #3a2725);
}

.video-row article:nth-child(5) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(6, 7, 7, 0.08)),
    linear-gradient(180deg, #cbd9c7, #7e9b77 48%, #26342a);
}

.video-row article:nth-child(6) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(6, 7, 7, 0.08)),
    linear-gradient(180deg, #cbc3e6, #8270ad 50%, #29243b);
}

.video-row article:nth-child(7) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(6, 7, 7, 0.08)),
    linear-gradient(180deg, #d8d1b8, #a18a56 50%, #302918);
}

.video-row article:nth-child(8) {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(6, 7, 7, 0.08)),
    linear-gradient(180deg, #b9d8ea, #608aa1 50%, #202f38);
}

.video-row span {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 56px;
}

.card-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-right: 8px;
  padding-bottom: clamp(58px, 6vw, 74px);
  color: #fff;
  text-shadow: 0 1px 18px rgba(6, 7, 7, 0.35);
}

.card-copy .card-kicker {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1;
}

.card-copy h3 {
  margin: 0 0 14px;
  max-width: 11em;
  font-size: clamp(21px, 2.15vw, 34px);
  font-weight: 500;
  line-height: 0.98;
}

.card-copy p:last-child {
  margin: 0;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.22;
}

.card-video-preview {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(0.92) contrast(1.02);
}

.video-row article::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 7, 0.05), rgba(6, 7, 7, 0.32));
  pointer-events: none;
}

.video-row article.creative-card::after {
  background:
    linear-gradient(180deg, rgba(6, 7, 7, 0.04), rgba(6, 7, 7, 0.28)),
    linear-gradient(145deg, rgba(6, 7, 7, 0.06), rgba(6, 7, 7, 0.48));
}

.video-row article > img:not(.card-video-preview) {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  width: clamp(58px, 6vw, 86px);
  height: auto;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.video-controls {
  position: relative;
  z-index: 2;
  width: min(150px, 40vw);
  align-self: center;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(46px);
  pointer-events: none;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.video-controls[hidden] {
  display: none;
}

.experience-section.cards-controls-visible .video-controls {
  opacity: 1;
  transform: translateY(28px);
  pointer-events: auto;
}

@media (min-width: 861px) and (max-height: 660px) {
  .experience-section {
    padding-top: clamp(132px, 20.8svh, 140px);
    padding-bottom: max(38px, var(--slide-counter-safe-bottom));
    grid-template-rows: auto auto minmax(44px, 1fr);
  }

  .experience-section h2 {
    margin-bottom: clamp(16px, 3svh, 22px);
    font-size: clamp(18px, 3.4svh, 22px);
  }

  .video-row article {
    min-height: clamp(220px, 39svh, 270px);
  }

  .video-row span {
    font-size: clamp(38px, 8svh, 48px);
  }

  .video-row article > img:not(.card-video-preview) {
    width: 44px;
  }

  .video-controls {
    transform: translateY(28px);
  }

  .experience-section.cards-controls-visible .video-controls {
    transform: translateY(14px);
  }
}

.video-controls::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  border-top: 1.5px dashed rgba(6, 7, 7, 0.54);
  transform: translateY(-50%);
  pointer-events: none;
}

.video-controls button {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 0.74;
  padding: 0 0 2px;
  font-family: Arial, Helvetica, sans-serif;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.video-controls button:hover:not(:disabled) {
  background: #ead4ed;
  color: var(--blue);
  border-color: var(--blue);
}

.video-controls button:disabled {
  opacity: 0.36;
  cursor: default;
}

.video-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 72px);
  background: rgba(247, 247, 247, 0.76);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms var(--ease), visibility 260ms var(--ease);
}

.video-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-overlay-frame {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  max-height: min(78svh, 720px);
  background: #060707;
  border: 1.5px solid rgba(6, 7, 7, 0.42);
  box-shadow: 0 28px 80px rgba(6, 7, 7, 0.22);
  display: grid;
}

.video-overlay-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #060707;
}

.video-overlay-message {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(calc(100% - 36px), 620px);
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(6, 7, 7, 0.78);
  color: #fff;
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.3;
  text-align: center;
  transform: translateX(-50%);
}

.video-overlay-message[hidden] {
  display: none;
}

.video-overlay-message a {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.video-overlay-close {
  position: absolute;
  top: clamp(18px, 4vw, 38px);
  right: clamp(18px, 4vw, 38px);
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.video-overlay-close::before,
.video-overlay-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.video-overlay-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-overlay-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 861px) {
  .experience-section {
    height: 100svh;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: stretch;
    padding-bottom: var(--slide-counter-safe-bottom);
  }

  .experience-section h2 {
    margin-bottom: 0;
  }

  .video-row {
    align-self: center;
    transform: translate(calc(var(--card-offset) * -1), clamp(-18px, -2.4svh, -12px));
  }

  .video-controls {
    position: absolute;
    left: 50%;
    bottom: max(var(--experience-controls-bottom, clamp(28px, 6svh, 52px)), var(--slide-counter-safe-bottom));
    margin: 0;
    transform: translate(-50%, 0);
  }

  .experience-section.cards-controls-visible .video-controls {
    transform: translate(-50%, 0);
  }
}

.partners-section {
  height: 100svh;
  padding: clamp(148px, 20svh, 180px) clamp(24px, 6vw, 92px) max(clamp(58px, 8svh, 86px), var(--slide-counter-safe-bottom));
  border-top: 1px solid rgba(6, 7, 7, 0.28);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.partner-logos {
  display: grid;
  grid-template-columns: 1.08fr 1.1fr 0.9fr 1.02fr 0.9fr;
  align-items: center;
  align-content: center;
  gap: clamp(16px, 3vw, 36px);
  max-width: 1060px;
  width: min(100%, 1060px);
  min-height: clamp(74px, 14svh, 126px);
  margin: clamp(30px, 5svh, 52px) auto clamp(28px, 5svh, 50px);
}

.partner-logo {
  appearance: none;
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  min-height: 0;
  height: clamp(58px, 11svh, 96px);
  margin: 0;
  display: grid;
  place-items: center;
  padding: 10px 4px 18px;
  opacity: 0.48;
  filter: grayscale(1);
  transition: opacity 180ms ease, filter 180ms ease;
}

.partner-logo.active,
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(1) contrast(1.08);
}

.partner-logo img {
  display: block;
  width: min(100%, 156px);
  max-height: min(64px, 7.8svh);
  object-fit: contain;
}

.partner-logo-wide img {
  width: min(100%, 196px);
  max-height: min(39px, 5.2svh);
}

.partner-logo-tall img {
  max-height: min(78px, 9svh);
}

.partner-copy {
  position: relative;
  display: block;
  width: min(100%, 1040px);
  max-width: 1040px;
  margin: 0 auto;
  padding-top: clamp(22px, 4svh, 42px);
  flex: 0 0 auto;
}

.partner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(42px, 9vw, 138px);
  align-items: start;
  animation: partnerPanelIn 260ms var(--ease) both;
}

.partner-panel[hidden] {
  display: none;
}

.partner-panel h3,
.partner-panel p {
  margin: 0;
}

.partner-panel h3 {
  grid-column: 1 / -1;
  margin-bottom: clamp(20px, 3svh, 30px);
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1;
  font-weight: 400;
}

.partner-panel p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.24;
  color: #1f1f21;
}

.partner-contact {
  align-self: start;
}

.partner-contact p + p {
  margin-top: clamp(14px, 2svh, 22px);
}

.partner-contact span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.partner-contact a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.partner-links a[aria-disabled="true"] {
  color: var(--muted);
  cursor: default;
  text-decoration-style: dotted;
}

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

.contact-section {
  position: relative;
  padding: 52px clamp(24px, 6vw, 92px) max(70px, var(--slide-counter-safe-bottom));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 100svh;
  display: grid;
  align-content: center;
}

.contact-section address {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  max-width: 1120px;
  margin: 58px auto 0;
  font-style: normal;
}

.contact-section p {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 0.98;
}

.contact-section span {
  display: block;
  margin-bottom: 6px;
  color: #9a94a0;
}

.contact-section a {
  transition: color 160ms ease;
}

.contact-section a:hover {
  color: var(--blue);
}

.contact-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--slide-counter-safe-bottom);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 36px clamp(24px, 6vw, 92px) 34px;
  border-top: 1px solid rgba(6, 7, 7, 0.72);
  font-size: clamp(18px, 1.55vw, 26px);
  line-height: 0.95;
  text-transform: lowercase;
}

.contact-footer a {
  color: rgba(6, 7, 7, 0.72);
}

.legal-section {
  min-height: 100svh;
  padding: clamp(106px, 12vw, 156px) clamp(24px, 7vw, 112px) var(--slide-counter-safe-bottom);
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line);
  background: #fff;
}

.legal-content {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.legal-close {
  position: absolute;
  top: 2px;
  right: 0;
  width: clamp(34px, 3.2vw, 46px);
  height: clamp(34px, 3.2vw, 46px);
  border: 1px solid rgba(6, 7, 7, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.legal-close span,
.legal-close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 1px;
  content: "";
  background: rgba(6, 7, 7, 0.82);
  transform-origin: center;
}

.legal-close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.legal-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.legal-close:hover {
  background: rgba(232, 216, 255, 0.82);
}

.legal-kicker {
  margin: 0 0 8px;
  color: rgba(6, 7, 7, 0.46);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1;
  text-transform: uppercase;
}

.legal-section h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(38px, 7vw, 108px);
  line-height: 0.9;
  letter-spacing: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 58px) clamp(22px, 4vw, 64px);
  margin-top: clamp(36px, 7svh, 82px);
  padding-top: clamp(22px, 3svh, 34px);
  border-top: 1px solid rgba(6, 7, 7, 0.38);
}

.legal-grid article {
  min-width: 0;
}

.legal-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 0.98;
  font-weight: 500;
}

.legal-grid p {
  margin: 0;
  color: rgba(6, 7, 7, 0.68);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.22;
}

.legal-back-link {
  display: inline-block;
  margin-top: clamp(28px, 5svh, 56px);
  color: rgba(6, 7, 7, 0.72);
  font-size: clamp(15px, 1.2vw, 19px);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.2em;
}

.curtain-stage > .curtain-slide {
  position: absolute;
  inset: 0;
  transition: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes barRise {
  from {
    transform: scaleY(0);
    opacity: 0.25;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .route-logo,
  .route-right-img,
  .route-mid-line,
  .site-header {
    animation: none;
  }
}

.site-footer {
  display: none;
  place-items: center;
  gap: 3px;
  padding: 28px;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(clamp(58px, 9svh, 86px), 1fr));
    justify-items: center;
    gap: clamp(10px, 2vw, 20px) clamp(16px, 4vw, 44px);
    max-width: 720px;
    width: min(100%, 720px);
    min-height: clamp(214px, 32svh, 304px);
    margin: clamp(24px, 4svh, 42px) auto clamp(24px, 4svh, 42px);
  }

  .partner-logo {
    width: 100%;
    height: 100%;
    padding-inline: 8px;
  }
}

@media (max-width: 860px) {
  :root {
    --slide-counter-gap: 12px;
    --slide-counter-height: 10px;
    --slide-counter-safe-bottom: calc((var(--slide-counter-gap) * 2) + var(--slide-counter-height));
    --mobile-section-title-top: clamp(112px, 16.1svh, 136px);
  }

  body.is-mobile-landscape {
    --mobile-section-title-top: clamp(88px, 26svh, 112px);
  }

  .site-header {
    position: absolute;
    z-index: 1002;
    padding-top: 22px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle,
  .mobile-nav-panel {
    display: block;
  }

  .slide-counter {
    right: 12px;
    bottom: var(--slide-counter-gap);
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 10px;
  }

  .slide-counter-line {
    width: 18px;
  }

  .hero-route {
    right: 28%;
  }

  .weather-strip,
  .data-grid,
  .partner-copy,
  .contact-section address {
    grid-template-columns: 1fr;
  }

  .module-section {
    padding-top: var(--mobile-section-title-top);
  }

  .module-section h2 {
    font-size: clamp(17px, 5vw, 22px);
  }

  .module-switcher {
    width: min(100% - 34px, 360px);
    margin-top: 28px;
  }

  .module-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    gap: 9px 8px;
  }

  .module-tabs::before {
    display: none;
  }

  .module-tabs button {
    width: clamp(34px, 9vw, 42px);
    height: clamp(34px, 9vw, 42px);
    font-size: clamp(9px, 2.7vw, 11px);
    border-width: 1.25px;
  }

  .module-date {
    display: grid;
    justify-items: center;
    gap: 2px;
    margin: 15px 0 11px;
    font-size: clamp(13px, 3.55vw, 15px);
    text-align: center;
  }

  .module-date-separator {
    display: inline;
  }

  .module-current-date {
    margin-top: 7px;
    font-size: clamp(13px, 3.55vw, 15px);
  }

  .module-dashboard {
    position: relative;
    display: block;
    width: min(100% - 24px, 520px);
    height: min(34svh, 268px);
    min-height: 0;
    margin: 0 auto 0;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    overflow: hidden;
    perspective: 1200px;
    cursor: pointer;
  }

  .module-dashboard .bar-chart,
  .module-dashboard .module-drawing {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 620ms var(--ease), opacity 320ms ease;
    border: 0;
    background: transparent;
    overflow: hidden;
  }

  .module-dashboard .bar-chart {
    grid-template-columns: repeat(24, minmax(0, 1fr));
    padding: 44px 8px 34px 30px;
    transform: rotateY(0deg);
    opacity: 1;
  }

  .module-dashboard .chart-legend {
    top: 10px;
    left: 30px;
    right: 8px;
    gap: 6px 10px;
    font-size: 9px;
  }

  .module-dashboard .chart-legend-item {
    gap: 5px;
  }

  .module-dashboard .chart-legend-item i {
    width: 14px;
    height: 7px;
  }

  .module-dashboard .module-drawing {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 18px;
    padding: 22px;
    transform: rotateY(180deg);
    opacity: 0;
    pointer-events: none;
  }

  .module-dashboard.is-flipped .bar-chart {
    transform: rotateY(-180deg);
    opacity: 0;
    pointer-events: none;
  }

  .module-dashboard.is-flipped .module-drawing {
    transform: rotateY(0deg);
    opacity: 1;
    pointer-events: auto;
  }

  .module-dashboard .chart-y-axis {
    top: 44px;
    bottom: 68px;
    width: 25px;
    font-size: 9px;
  }

  .module-dashboard .chart-y-axis li::after {
    right: -9px;
    width: 5px;
  }

  .module-dashboard .bar-chart::before {
    left: 30px;
    bottom: 68px;
    height: calc(100% - 112px);
  }

  .module-dashboard .bar-chart::after {
    left: 30px;
    top: 44px;
    bottom: 68px;
  }

  .module-dashboard .chart-reference-line-layer {
    left: 30px;
    top: 44px;
    width: calc((100% - 30px) * 24 / 25);
    height: calc(100% - 112px);
  }

  .module-dashboard .chart-col {
    grid-template-rows: 1fr 34px;
  }

  .module-dashboard .bar-chart {
    grid-template-columns: repeat(25, minmax(0, 1fr));
  }

  .module-dashboard .chart-hour-unit {
    display: grid;
    grid-template-rows: 1fr 34px;
    min-width: 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1;
  }

  .module-dashboard .chart-hour-unit::after {
    content: "H";
    grid-row: 2;
    align-self: start;
    justify-self: center;
    margin-top: 7px;
  }

  .module-dashboard .chart-col::before {
    bottom: 34px;
  }

  .module-dashboard .chart-col::after {
    bottom: 34px;
  }

  .module-dashboard .chart-col:last-of-type {
    background:
      linear-gradient(rgba(6, 7, 7, 0.58), rgba(6, 7, 7, 0.58)) right top / 1px calc(100% - 34px) no-repeat;
  }

  .module-dashboard .bar-chart .hour-bar {
    width: min(58%, 14px);
  }

  .module-dashboard .bar-chart .pilot-hour-bar {
    width: min(88%, 24px);
  }

  .module-dashboard .bar-chart small {
    margin-top: 7px;
    font-size: 0;
  }

  .module-dashboard .bar-chart small::before {
    content: attr(data-hour);
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    line-height: 1;
    text-align: center;
  }

  .module-dashboard .module-model.large {
    width: min(230px, 72%);
    max-height: 70%;
  }

  .module-dashboard .module-image {
    height: min(100%, 230px);
    max-height: 74%;
    max-width: 82%;
  }

  .module-dashboard .module-drawing p {
    max-width: 260px;
    font-size: 12px;
  }

  .frequency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, max-content);
    row-gap: clamp(14px, 2svh, 22px);
    align-content: center;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    margin-top: calc(-1 * clamp(38px, 6.8svh, 48px));
    margin-bottom: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    transform: none;
  }

  .frequency-grid article {
    --ring-axis: clamp(54px, 15vw, 68px);
    --ring-thickness: 6px;
    min-height: 0;
    gap: 4px;
    padding: 2px 8px;
    border: 0;
  }

  .frequency-grid strong {
    font-size: 36px;
  }

  .frequency-grid span {
    width: min(7.4em, 100%);
    font-size: clamp(13px, 3.55vw, 15px);
    line-height: 1.08;
    text-align: center;
  }

  .weather-strip {
    align-items: center;
    gap: 26px;
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .map-section .weather-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 10px;
    padding: 12px;
    bottom: 0;
    padding-bottom: var(--slide-counter-safe-bottom);
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .map-section .weather-strip.module-frequency-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 12px var(--slide-counter-safe-bottom);
  }

  .weather-module-title {
    text-align: center;
    font-size: 13px;
  }

  .weather-frequency-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .weather-frequency-card {
    --ring-axis: clamp(48px, 15vw, 62px);
    --ring-thickness: 5px;
    gap: 7px;
  }

  .weather-frequency-card strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .weather-frequency-card span {
    font-size: 9px;
    line-height: 1.02;
  }

  .phone-rotate-overlay {
    position: absolute;
    z-index: 6;
    inset: 0;
    display: grid;
    grid-template-rows: min-content min-content min-content;
    align-content: end;
    justify-items: center;
    gap: clamp(14px, 4.2svh, 24px);
    place-items: center;
    padding: 0 24px clamp(223px, 27.2svh, 241px);
    background: rgba(247, 247, 247, 0.58);
    backdrop-filter: blur(1px);
    color: var(--blue);
    pointer-events: auto;
    transition: opacity 380ms var(--ease), visibility 380ms var(--ease);
  }

  .phone-rotate-svg {
    width: clamp(128px, 42vw, 178px);
    height: auto;
    overflow: visible;
    color: var(--blue);
    transform: translateY(-48px);
  }

  .phone-rotate-copy {
    margin: 0;
    color: var(--ink);
    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 1.12;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }

  .phone-rotate-copy strong {
    font-weight: 500;
  }

  .phone-rotate-close {
    position: relative;
    width: 34px;
    height: 34px;
    margin: 0;
    padding: 0;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: auto;
  }

  .phone-rotate-close::before,
  .phone-rotate-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
  }

  .phone-rotate-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .phone-rotate-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .phone-rotate-figure {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
  }

  .phone-rotate-phone,
  .phone-rotate-arrow {
    fill: currentColor;
  }

  .phone-rotate-arrow {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
  }

  .phone-rotate-mask-path {
    fill: none;
    stroke: #fff;
    stroke-width: 86;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
  }

  .phone-rotate-mask-head {
    fill: #fff;
    opacity: 0;
  }

  .map-section.is-active .phone-rotate-overlay,
  .map-section.is-entering .phone-rotate-overlay {
    opacity: 1;
  }

  .map-section.is-active .phone-rotate-copy,
  .map-section.is-entering .phone-rotate-copy {
    animation: phoneRotateCopyIn 520ms var(--ease) 720ms both;
  }

  .map-section.is-active .phone-rotate-close,
  .map-section.is-entering .phone-rotate-close {
    animation: phoneRotateCopyIn 520ms var(--ease) 860ms both;
  }

  .phone-rotate-overlay.is-dismissed {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
  }

  .map-section.is-active .phone-rotate-figure,
  .map-section.is-entering .phone-rotate-figure {
    animation: phoneRotateFigure 4200ms cubic-bezier(.16, 1, .3, 1) 260ms infinite both;
  }

  .map-section.is-active .phone-rotate-arrow-right,
  .map-section.is-entering .phone-rotate-arrow-right {
    animation: phoneRotateArrowOpacity 4200ms cubic-bezier(.16, 1, .3, 1) 260ms infinite both;
  }

  .map-section.is-active .phone-rotate-arrow-left,
  .map-section.is-entering .phone-rotate-arrow-left {
    animation: phoneRotateArrowOpacity 4200ms cubic-bezier(.16, 1, .3, 1) 260ms infinite both;
  }

  .map-section.is-active .phone-rotate-mask-path-right,
  .map-section.is-entering .phone-rotate-mask-path-right {
    animation: phoneRotateArrowDrawRight 4200ms cubic-bezier(.16, 1, .3, 1) 260ms infinite both;
  }

  .map-section.is-active .phone-rotate-mask-path-left,
  .map-section.is-entering .phone-rotate-mask-path-left {
    animation: phoneRotateArrowDrawLeft 4200ms cubic-bezier(.16, 1, .3, 1) 260ms infinite both;
  }

  .map-section.is-active .phone-rotate-mask-head-left,
  .map-section.is-entering .phone-rotate-mask-head-left {
    animation: phoneRotateMaskHeadLeft 4200ms cubic-bezier(.16, 1, .3, 1) 260ms infinite both;
  }

  @keyframes phoneRotateFigure {
    0%, 100% {
      opacity: 0;
      transform: rotate(90deg) scale(0.72);
    }
    11%, 28% {
      opacity: 1;
      transform: rotate(90deg) scale(1);
    }
    52% {
      opacity: 1;
      transform: rotate(180deg) scale(1);
    }
    82% {
      opacity: 1;
      transform: rotate(180deg) scale(1);
    }
    94% {
      opacity: 0;
      transform: rotate(180deg) scale(0.9);
    }
  }

  @keyframes phoneRotateArrowOpacity {
    0%, 22%, 86%, 100% {
      opacity: 0;
    }
    38%, 74% {
      opacity: 1;
    }
    86% {
      opacity: 0;
    }
  }

  @keyframes phoneRotateArrowDrawRight {
    0%, 22% {
      stroke-dashoffset: 1;
    }
    38%, 62% {
      stroke-dashoffset: 0;
    }
    78%, 100% {
      stroke-dashoffset: -1;
    }
  }

  @keyframes phoneRotateArrowDrawLeft {
    0%, 26% {
      stroke-dashoffset: 1;
    }
    42%, 62% {
      stroke-dashoffset: 0;
    }
    78%, 100% {
      stroke-dashoffset: -1;
    }
  }

  @keyframes phoneRotateMaskHeadLeft {
    0%, 34%, 88%, 100% {
      opacity: 0;
    }
    42%, 82% {
      opacity: 1;
    }
  }

  @keyframes phoneRotateCopyIn {
    0% {
      opacity: 0;
      transform: translateY(12px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .map-section .place-date {
    grid-column: 1 / -1;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 7px;
    line-height: 1;
  }

  .map-section .place-date br {
    display: none;
  }

  .map-section .place-name {
    font-weight: 500;
  }

  .map-section .metric {
    grid-template-columns: max-content max-content;
    grid-template-rows: auto auto;
    align-items: end;
    row-gap: 4px;
  }

  .map-section .metric strong {
    width: auto;
    grid-row: 1;
    grid-column: 1;
    font-size: clamp(28px, 9vw, 44px);
  }

  .map-section .metric span {
    grid-row: 1;
    grid-column: 2;
    align-self: start;
    font-size: clamp(20px, 6vw, 31px);
  }

  .map-section .metric small {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: 0;
    font-size: 11px;
    text-align: center;
  }

  body.is-mobile-landscape[data-active-slide="plan"] .slide-counter {
    opacity: 0;
    pointer-events: none;
  }

  body.is-mobile-landscape[data-active-slide="plan"] .site-header {
    --header-x: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  body.is-mobile-landscape[data-active-slide="plan"] .route-logo {
    --route-h: clamp(42px, 10svh, 54px);
  }

  body.is-mobile-landscape .map-section .phone-rotate-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms var(--ease);
  }

  body.is-mobile-landscape .map-section .phone-rotate-figure,
  body.is-mobile-landscape .map-section .phone-rotate-arrow,
  body.is-mobile-landscape .map-section .phone-rotate-mask-path,
  body.is-mobile-landscape .map-section .phone-rotate-mask-head {
    animation-play-state: paused;
  }

  body.is-mobile-landscape .map-section {
    --map-ribbon-height: 76px;
  }

  body.is-mobile-landscape .map-section .weather-strip {
    grid-template-columns: minmax(90px, 0.8fr) repeat(3, minmax(74px, 1fr));
    align-items: center;
    gap: 8px;
    bottom: 0;
    height: var(--map-ribbon-height);
    padding: 0 12px;
    border-top: 1px solid rgba(6, 7, 7, 0.24);
  }

  body.is-mobile-landscape .map-section .weather-strip.module-frequency-panel {
    grid-template-columns: minmax(82px, 0.65fr) minmax(0, 3fr);
    height: 76px;
    gap: 8px;
    padding: 4px 12px;
  }

  body.is-mobile-landscape .weather-module-title {
    text-align: left;
    font-size: 10px;
    line-height: 1;
  }

  body.is-mobile-landscape .weather-frequency-card {
    --ring-axis: 38px;
    --ring-thickness: 4px;
    gap: 3px;
  }

  body.is-mobile-landscape .weather-frequency-card strong {
    font-size: 19px;
  }

  body.is-mobile-landscape .weather-frequency-card span {
    font-size: 7px;
    line-height: 1;
  }

  body.is-mobile-landscape .map-section .place-date {
    grid-column: auto;
    display: block;
    justify-self: start;
    align-self: center;
    font-size: 12px;
    line-height: 1;
    text-align: left;
    transform: none;
  }

  body.is-mobile-landscape .map-section .place-date br {
    display: block;
  }

  body.is-mobile-landscape .map-section .metric {
    justify-content: center;
    align-self: center;
    align-items: end;
    row-gap: 1px;
    line-height: 1;
    transform: none;
  }

  body.is-mobile-landscape .map-section .metric strong {
    font-size: clamp(24px, 5.6vw, 34px);
  }

  body.is-mobile-landscape .map-section .metric span {
    font-size: clamp(17px, 4vw, 24px);
  }

  body.is-mobile-landscape .map-section .metric small {
    align-self: start;
    font-size: 10px;
    line-height: 1;
    transform: none;
  }

  .metric {
    grid-template-columns: minmax(150px, max-content) minmax(70px, max-content);
    justify-content: center;
  }

  .metric strong {
    width: 150px;
    text-align: right;
  }

  .metric small {
    align-self: center;
    transform: translateY(-2px);
  }

  .data-grid {
    grid-auto-rows: max-content;
    align-content: space-between;
    gap: 0;
    max-width: 360px;
    min-height: min(47svh, 398px);
    margin-top: clamp(56px, 8svh, 82px);
  }

  .stacked-metrics {
    display: contents;
  }

  .stacked-metrics + .stacked-metrics {
    margin-top: 0;
  }

  .stacked-metrics p {
    width: min(100%, 348px);
    grid-template-columns: minmax(0, 214px) 104px;
    justify-content: center;
    column-gap: 10px;
    margin-bottom: 0;
  }

  .stacked-metrics:first-child,
  .stacked-metrics:last-child {
    --metric-number-width: auto;
  }

  .stacked-metrics strong {
    font-size: clamp(50px, 15vw, 64px);
  }

  .stacked-metrics span {
    font-size: 12px;
    line-height: 1.02;
    transform: none;
  }

  .metric-row-wide strong {
    font-size: clamp(43px, 12.3vw, 51px);
  }

  .metric-row-wide span {
    transform: none;
  }

  .embed-preview {
    width: min(62vw, 340px);
    right: 5%;
    top: 18%;
  }

  .frequency-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 24svh, 210px);
    gap: 14px;
    width: min(100%, 360px);
    margin: 0 auto;
    overflow-y: hidden;
    overflow-x: hidden;
    max-height: none;
    padding: 0;
    transform: none !important;
    perspective: none;
    touch-action: pan-y;
  }

  .video-row article {
    min-height: 0;
    height: 100%;
    padding: 12px;
    border-width: 1.5px;
    border-radius: 7px;
  }

  .video-row article[hidden] {
    display: none;
  }

  .video-row span {
    top: 10px;
    right: 12px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .card-copy {
    padding-right: 0;
    padding-bottom: clamp(38px, 10vw, 50px);
  }

  .card-copy .card-kicker {
    margin-bottom: 5px;
    font-size: clamp(11px, 3.4vw, 14px);
  }

  .card-copy h3 {
    margin-bottom: 8px;
    max-width: 9.4em;
    font-size: clamp(14px, 4.2vw, 18px);
    line-height: 1;
  }

  .card-copy p:last-child {
    font-size: clamp(8px, 2.5vw, 10px);
    line-height: 1.16;
  }

  .video-row article > img:not(.card-video-preview) {
    left: 10px;
    bottom: 10px;
    width: clamp(46px, 15vw, 58px);
  }

  .video-controls {
    display: flex;
    align-self: center;
    width: min(118px, 34vw);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(26px);
    pointer-events: none;
  }

  .experience-section.cards-controls-visible .video-controls {
    opacity: 1;
    transform: translateY(11px);
    pointer-events: auto;
  }

  .video-controls::before {
    left: 32px;
    right: 32px;
  }

  .video-controls button {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .experience-section {
    grid-template-rows: auto auto minmax(58px, 1fr);
    align-content: start;
    padding-top: var(--mobile-section-title-top);
    padding-bottom: var(--slide-counter-safe-bottom);
  }

  .experience-title-detail {
    font-size: clamp(13px, 3.55vw, 15px);
  }

  .experience-section:not(.cards-dealing) .video-row article {
    transform: none;
  }

  .partners-section {
    height: 100svh;
    padding: var(--mobile-section-title-top) 20px var(--slide-counter-safe-bottom);
    overflow-y: auto;
  }

  .partners-section h2 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(15px, 4.3vw, 19px);
    line-height: 1.02;
  }

  .partner-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(42px, 1fr));
    align-items: center;
    justify-items: center;
    flex: 0 0 auto;
    gap: 6px 10px;
    width: min(100%, 320px);
    min-height: 0;
    height: 150px;
    margin: clamp(28px, 4.4svh, 44px) auto clamp(18px, 3svh, 28px);
    overflow: visible;
  }

  .partner-logo {
    min-height: 0;
    width: 100%;
    height: 100%;
    padding: 5px 4px 10px;
  }

  .partner-logo img {
    width: min(100%, 118px);
    max-height: min(36px, 4.8svh);
  }

  .partner-logo-wide img {
    width: min(100%, 148px);
    max-height: min(26px, 3.4svh);
  }

  .partner-logo-tall img {
    max-height: min(38px, 5svh);
  }

  .partner-copy {
    max-width: 340px;
    margin-top: 0;
    padding-top: 16px;
    font-size: 12px;
    clear: both;
  }

  .partner-panel {
    display: block;
  }

  .partner-panel[hidden] {
    display: none;
  }

  .partner-panel h3 {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.05;
    text-align: left;
  }

  .partner-panel p {
    font-size: 12px;
    line-height: 1.12;
  }

  .partner-contact {
    margin-top: 9px !important;
  }

  .partner-contact p + p {
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .brand img:not(.route-left-img):not(.route-mid-line):not(.route-right-img) {
    width: 58px;
  }

  .brand .route-left-img,
  .brand .route-right-img {
    width: auto;
    height: var(--route-img-h);
    max-width: none;
  }

  .hero {
    min-height: 64vh;
    padding-top: 116px;
  }

  .hero h1 {
    text-align: center;
    font-size: clamp(27px, 8.4vw, 36px);
  }

  .hero-route {
    display: none;
  }

  .jonction-map {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .map-section {
    border: 0;
    --map-ribbon-height: max(178px, calc(var(--slide-counter-safe-bottom) + 112px));
    grid-template-rows: minmax(0, calc(100svh - var(--map-ribbon-height))) var(--map-ribbon-height);
    height: 100svh;
    min-height: 100svh;
  }

  .map-section .weather-strip {
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--map-ribbon-height);
    min-height: 0;
    align-self: stretch;
    overflow: hidden;
  }

  .map-dot {
    width: 18px;
  }

  .video-row {
    grid-auto-rows: clamp(138px, 22svh, 188px);
  }

  .video-row article {
    min-height: 0;
  }
}

@media (max-width: 860px) and (max-height: 820px) {
  :root {
    --slide-counter-gap: clamp(8px, 1.45svh, 12px);
    --slide-counter-height: 10px;
  }

  .module-dashboard {
    height: clamp(174px, 27svh, 220px);
  }

  .module-dashboard .bar-chart {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .module-dashboard .chart-y-axis {
    top: 20px;
    bottom: 60px;
  }

  .module-dashboard .bar-chart::before {
    bottom: 60px;
    height: calc(100% - 80px);
  }

  .module-dashboard .chart-reference-line-layer {
    top: 20px;
    height: calc(100% - 80px);
  }

  .frequency-grid {
    grid-template-rows: repeat(2, max-content);
    height: auto;
    row-gap: clamp(8px, 1.3svh, 12px);
    align-content: center;
    padding: 0;
    transform: none;
  }

  .frequency-grid article {
    --ring-axis: clamp(52px, 14.5vw, 62px);
    gap: 3px;
  }

  .frequency-grid strong {
    font-size: 32px;
  }

  .frequency-grid span {
    font-size: 12px;
    line-height: 1.02;
  }

}

.module-dashboard .bar-chart .pilot-hour-bar {
  width: 100%;
}

@media (max-width: 860px) {
  .module-dashboard .bar-chart .pilot-hour-bar {
    width: 100%;
  }

  .data-section {
    height: 100svh;
    padding-top: var(--mobile-section-title-top);
    padding-bottom: var(--slide-counter-safe-bottom);
    align-content: start;
  }

  .data-section h2,
  .module-section h2,
  .experience-section h2,
  .partners-section h2,
  .contact-section h2,
  .legal-section h2 {
    font-size: clamp(17px, 5vw, 22px);
  }
}

@media (min-width: 861px) {
  :root {
    --desktop-section-title-top: clamp(126px, 15.5svh, 190px);
  }

  .data-section,
  .module-section {
    height: 100svh;
    padding-top: var(--desktop-section-title-top);
  }

  .data-section {
    align-content: start;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  :root {
    --desktop-section-title-top: clamp(132px, 19svh, 150px);
  }
}

@media (min-width: 861px) and (max-height: 660px) {
  :root {
    --desktop-section-title-top: clamp(100px, 16svh, 112px);
  }
}

.experience-section,
.partners-section,
.contact-section,
.legal-section {
  height: 100svh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
}

.experience-section h2 {
  margin-bottom: 0;
}

.experience-content,
.partners-content {
  min-width: 0;
  min-height: 0;
  display: grid;
  align-content: safe center;
}

.experience-content {
  padding-block: clamp(16px, 2.5svh, 24px);
}

.experience-section .video-controls {
  position: relative;
  left: auto;
  bottom: auto;
  margin: clamp(18px, 3svh, 28px) auto 0;
  transform: translateY(18px);
}

.experience-section.cards-controls-visible .video-controls {
  transform: translateY(0);
}

.partners-section {
  --partners-content-pad: clamp(20px, 3svh, 30px);
}

.partners-content {
  padding-block: var(--partners-content-pad);
}

.partners-content .partner-logos {
  margin-top: 0;
}

.contact-section {
  --contact-footer-height: clamp(106px, 12.8svh, 116px);
  padding-bottom: calc(var(--slide-counter-safe-bottom) + var(--contact-footer-height));
}

.contact-section address {
  align-self: safe center;
  margin-top: 0;
}

@media (min-width: 861px) {
  :root {
    --late-section-title-top: clamp(148px, 20svh, 180px);
  }

  .experience-section,
  .partners-section,
  .contact-section,
  .legal-section {
    padding-top: var(--late-section-title-top);
  }

  .experience-content .video-row {
    transform: translateX(calc(var(--card-offset) * -1));
  }
}

@media (min-width: 861px) and (max-height: 660px) {
  :root {
    --late-section-title-top: clamp(112px, 20svh, 132px);
  }

  .partners-section {
    --partners-content-pad: clamp(8px, 1.8svh, 12px);
  }

  .partners-section .partner-logos {
    min-height: clamp(96px, 18svh, 116px);
    margin-bottom: clamp(10px, 2svh, 14px);
  }

  .partners-section .partner-logo {
    padding-block: 4px 8px;
  }

  .partners-section .partner-copy {
    padding-top: clamp(6px, 1.5svh, 10px);
  }

  .partners-section .partner-panel h3 {
    margin-bottom: clamp(10px, 2svh, 14px);
    font-size: clamp(18px, 3.5svh, 22px);
  }

  .partners-section .partner-panel p {
    font-size: clamp(12px, 2.2svh, 14px);
    line-height: 1.15;
  }

  .partners-section .partner-contact span {
    margin-bottom: 5px;
    font-size: 11px;
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .partners-section .partner-logos {
    grid-template-rows: repeat(2, minmax(clamp(44px, 7svh, 64px), 1fr));
    min-height: clamp(104px, 20svh, 150px);
  }
}

@media (min-width: 861px) {
  .map-section {
    --map-ribbon-height: clamp(118px, 13svh, 138px);
    --desktop-map-bottom-reveal: clamp(72px, 8svh, 96px);
    grid-template-rows: minmax(0, 1fr) var(--map-ribbon-height);
  }

  .map-section .jonction-map-embed.is-ready {
    height: calc(100% + var(--desktop-map-bottom-reveal)) !important;
    transform: translateY(calc(-1 * var(--desktop-map-bottom-reveal)));
    transform-origin: top center;
  }

  .map-section .weather-strip {
    --weather-action-size: clamp(42px, 3.8vw, 54px);
    height: var(--map-ribbon-height);
    min-height: 0;
    grid-template-columns:
      minmax(170px, 1.08fr)
      repeat(3, minmax(110px, 1fr))
      minmax(54px, 0.3fr);
    gap: clamp(14px, 2.2vw, 34px);
    padding-top: clamp(8px, 1.2vw, 14px);
    padding-bottom: max(clamp(8px, 1.2vw, 14px), var(--slide-counter-safe-bottom));
    overflow: hidden;
  }

  .map-section .metric strong {
    font-size: clamp(40px, 4.25vw, 58px);
  }

  .map-section .metric span {
    font-size: clamp(22px, 2.6vw, 34px);
  }

  .map-section .weather-module-action-slot {
    display: block;
    width: 100%;
    height: calc(var(--weather-action-size) + 12px);
  }

  .map-section .weather-strip .place-date {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    text-align: left;
  }

  .map-section .weather-strip:not(.module-weather-panel) .place-date {
    text-align: left;
  }

  .map-section .weather-strip:not(.module-weather-panel) .place-name {
    display: block;
    font-size: clamp(17px, 1.7vw, 23px);
    font-weight: 500;
  }

  .module-weather-panel .place-date {
    display: block;
    text-align: left;
  }

  .module-weather-panel .place-date br {
    display: block;
  }

  .module-weather-panel .place-name {
    display: block;
    font-size: clamp(17px, 1.7vw, 23px);
    font-weight: 500;
  }

  .map-section .weather-strip.has-weather-action .weather-module-action {
    grid-column: 5;
    grid-row: 1;
    display: inline-grid;
    justify-self: end;
    align-self: center;
    margin: 0;
    padding: 0;
    font-size: 0;
    overflow: visible;
    transform: none;
  }

  .map-section .weather-strip.has-weather-action .weather-module-empty {
    grid-column: 2 / 5;
    grid-row: 1;
    justify-self: center;
  }

  .map-section .weather-strip.has-weather-action .weather-module-action-content {
    justify-content: center;
    text-align: center;
  }

  .map-section .weather-strip.has-weather-action .weather-module-action.is-rolling .weather-module-action-content {
    left: 50%;
  }

  .map-section .weather-strip.has-weather-action .weather-module-eye {
    width: var(--weather-action-size);
    height: var(--weather-action-size);
    flex-basis: var(--weather-action-size);
  }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .contact-section address {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 36px);
    width: min(100%, 940px);
    max-width: 940px;
  }

  .contact-section p {
    font-size: clamp(18px, 2vw, 22px);
  }
}

@media (max-width: 860px) {
  .experience-section,
  .partners-section,
  .contact-section,
  .legal-section {
    padding-top: var(--mobile-section-title-top);
  }

  .experience-section {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .partners-section {
    --partners-content-pad: clamp(28px, 4.4svh, 44px);
  }

  .contact-section {
    padding-bottom: calc(var(--slide-counter-safe-bottom) + var(--contact-footer-height));
  }

  .legal-section {
    align-content: start;
    overflow-y: auto;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 26px;
    padding-top: 20px;
  }

  .legal-grid h3 {
    margin-bottom: 7px;
  }

  .legal-back-link {
    margin-top: 24px;
  }
}

.data-section {
  height: 100svh;
  min-height: 100svh;
  padding-bottom: var(--slide-counter-safe-bottom);
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
}

.data-section .data-grid {
  align-self: safe center;
  margin-block: 0;
}

.partners-content .partner-copy {
  display: grid;
}

.partners-content .partner-panel,
.partners-content .partner-panel[hidden] {
  grid-area: 1 / 1;
}

.partners-content .partner-panel[hidden] {
  display: grid;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

@media (max-width: 860px) {
  .partners-content .partner-panel,
  .partners-content .partner-panel[hidden] {
    display: block;
  }
}

@media (min-width: 861px) {
  .frequency-grid {
    position: relative;
  }

  .frequency-grid::before {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 0;
    background:
      linear-gradient(rgba(6, 7, 7, 0.22), rgba(6, 7, 7, 0.22)) 25% 0 / 1px 100% no-repeat,
      linear-gradient(rgba(6, 7, 7, 0.22), rgba(6, 7, 7, 0.22)) 50% 0 / 1px 100% no-repeat,
      linear-gradient(rgba(6, 7, 7, 0.22), rgba(6, 7, 7, 0.22)) 75% 0 / 1px 100% no-repeat;
    pointer-events: none;
  }

  .frequency-grid article {
    border-right: 0;
  }

  .module-dashboard .bar-chart {
    grid-template-columns: repeat(25, minmax(0, 1fr));
  }

  .module-dashboard .bar-chart small {
    font-size: 0;
  }

  .module-dashboard .bar-chart small::before {
    content: attr(data-hour);
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: var(--muted);
    font-size: clamp(10px, 0.86vw, 14px);
    line-height: 1;
    text-align: center;
  }

  .module-dashboard .chart-hour-unit {
    display: grid;
    grid-template-rows: 1fr 28px;
    min-width: 0;
    color: var(--muted);
    font-size: clamp(10px, 0.86vw, 14px);
    line-height: 1;
  }

  .module-dashboard .chart-hour-unit::after {
    content: "H";
    grid-row: 2;
    align-self: start;
    justify-self: center;
    margin-top: 12px;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .module-dashboard .bar-chart small::before,
  .module-dashboard .chart-hour-unit {
    font-size: 10px;
  }

  .module-dashboard .chart-hour-unit {
    grid-template-rows: 1fr 24px;
  }

  .module-dashboard .chart-hour-unit::after {
    margin-top: 7px;
  }
}

@media (min-width: 861px) and (max-height: 660px) {
  .module-dashboard .bar-chart small::before,
  .module-dashboard .chart-hour-unit {
    font-size: 9px;
  }

  .module-dashboard .chart-hour-unit {
    grid-template-rows: 1fr 20px;
  }

  .module-dashboard .chart-hour-unit::after {
    margin-top: 5px;
  }
}

@media (max-width: 860px) {
  .weather-module-action {
    display: inline-grid;
    justify-self: end;
    align-self: end;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 0;
    overflow: visible;
  }

  body:not(.is-mobile-landscape) .map-section .place-date {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    justify-self: stretch;
    justify-content: stretch;
    justify-items: start;
    align-self: end;
    margin: 0;
    row-gap: clamp(6px, 1.8vw, 9px);
    font-size: clamp(17px, 5vw, 22px);
    line-height: 1;
    text-align: left;
    transform: none;
  }

  body:not(.is-mobile-landscape) .map-section .place-date br {
    display: none;
  }

  body:not(.is-mobile-landscape) .map-section .place-name {
    font-size: inherit;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip.has-weather-action .place-date {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  body:not(.is-mobile-landscape) .module-weather-panel .place-name {
    grid-column: 1;
    grid-row: 1;
  }

  body:not(.is-mobile-landscape) .module-weather-panel .place-detail {
    grid-column: 1;
    grid-row: 2;
  }

  body:not(.is-mobile-landscape) .map-section .module-weather-panel .metric:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  body:not(.is-mobile-landscape) .map-section .module-weather-panel .metric:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  body:not(.is-mobile-landscape) .map-section .module-weather-panel .metric:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip.has-weather-action .weather-module-action {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-default.place-date {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-default.metric:nth-child(2),
  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-module.metric:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-default.metric:nth-child(3),
  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-module.metric:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-default.metric:nth-child(4),
  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-module.metric:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-module.place-date {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  body:not(.is-mobile-landscape) .map-section .weather-strip > .weather-item-source-module.weather-module-action {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
  }

  body.is-mobile-landscape .map-section .weather-strip.has-weather-action {
    grid-template-columns: minmax(150px, 1.25fr) repeat(3, minmax(64px, 1fr)) minmax(82px, 0.68fr);
    height: 76px;
  }

  body.is-mobile-landscape .map-section .module-weather-panel .place-date {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
  }

  body.is-mobile-landscape .map-section .module-weather-panel .place-date br {
    display: block;
  }

  body.is-mobile-landscape .module-weather-panel .metric:nth-of-type(1) {
    grid-column: 2;
  }

  body.is-mobile-landscape .module-weather-panel .metric:nth-of-type(2) {
    grid-column: 3;
  }

  body.is-mobile-landscape .module-weather-panel .metric:nth-of-type(3) {
    grid-column: 4;
  }

  body.is-mobile-landscape .map-section .weather-strip.has-weather-action .weather-module-action {
    grid-column: 5;
    grid-row: 1;
    font-size: 10px;
  }

  body.is-mobile-landscape .map-section .weather-strip.has-weather-action .weather-module-action-content {
    gap: 5px;
  }

  body.is-mobile-landscape .map-section .weather-strip.has-weather-action .weather-module-eye {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}

@media (max-width: 860px) {
  .module-switcher {
    width: min(100% - 34px, 360px);
  }

  .module-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    gap: 9px 8px;
  }

  .module-tabs button {
    width: clamp(34px, 9vw, 42px);
    height: clamp(34px, 9vw, 42px);
  }

  .module-dashboard.module-has-no-data .bar-chart::after {
    left: calc(50% + 15px);
    font-size: clamp(18px, 5vw, 24px);
  }

  .frequency-grid article.is-no-data strong {
    font-size: clamp(15px, 4vw, 19px);
  }
}

main > .legal-section {
  grid-template-rows: 1fr;
  align-content: stretch;
  place-items: center;
  padding:
    clamp(106px, 12svh, 138px)
    clamp(26px, 6vw, 104px)
    max(clamp(36px, 5svh, 64px), var(--slide-counter-safe-bottom));
  overflow-y: auto;
}

main > .legal-section .legal-content {
  align-self: center;
}

main > .legal-section .legal-kicker {
  margin-bottom: clamp(7px, 0.9svh, 12px);
}

main > .legal-section h2 {
  max-width: none;
  font-size: clamp(34px, 5.6vw, 74px);
}

main > .legal-section .legal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2svh, 24px) clamp(22px, 3vw, 42px);
  margin-top: clamp(20px, 3.4svh, 34px);
  padding-top: clamp(14px, 2svh, 22px);
}

main > .legal-section .legal-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(15px, 1.1vw, 18px);
}

main > .legal-section .legal-grid p {
  font-size: clamp(12px, 0.82vw, 14px);
  line-height: 1.18;
}

main > .legal-section .legal-back-link {
  margin-top: clamp(18px, 3svh, 30px);
  font-size: clamp(13px, 1vw, 16px);
}

@media (max-width: 980px) {
  main > .legal-section .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  main > .legal-section .legal-close {
    top: -52px;
    right: 0;
  }

  main > .legal-section {
    place-items: start stretch;
    padding:
      clamp(126px, 18svh, 148px)
      24px
      max(56px, var(--slide-counter-safe-bottom));
  }

  main > .legal-section .legal-content {
    align-self: start;
  }

  main > .legal-section h2 {
    max-width: none;
    font-size: clamp(30px, 9vw, 42px);
  }

  main > .legal-section .legal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
    padding-top: 18px;
  }
}
