@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Variable-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono/IBMPlexMono-Regular-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono/IBMPlexMono-Medium-Latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --red: #da291c;
  --red-pressed: #b21f14;
  --red-surface: #f6d9d6;
  --red-progress: #e98078;
  --ink: #151513;
  --ink-secondary: #595752;
  --ink-tertiary: #78756e;
  --canvas: #f1eee7;
  --surface: #e7e3da;
  --surface-alt: #f7f4ed;
  --divider: #c9c5bc;
  --white: #fff;
  --success: #2e7d32;
  --water: #b7cfe3;
  --shadow: 0 32px 80px rgb(78 0 0 / 22%);
  --shell: 1600px;
  --page-gutter: clamp(1.25rem, 3.3vw, 4rem);
  --header-height: 76px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --font-sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

#concept,
#features,
#download {
  scroll-margin-top: 6rem;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
select {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border: 1px solid currentColor;
  color: var(--ink);
  background: var(--canvas);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-title,
.page-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-secondary);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 45%);
  color: var(--white);
  background: var(--red);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 28px;
}

.header-inner-minimal {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.header-inner-minimal .language-control {
  justify-self: end;
}

.brand-link {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
}

.brand-link img {
  width: 48px;
  height: 48px;
  border-radius: 22%;
  box-shadow: 0 8px 24px rgb(78 0 0 / 18%);
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.site-navigation a,
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation a {
  position: relative;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  transform: scaleX(1);
}

.language-control {
  position: relative;
}

.language-control::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-selector {
  min-height: 42px;
  padding: 0 36px 0 13px;
  border: 1px solid rgb(255 255 255 / 55%);
  appearance: none;
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 720;
}

.language-menu::before {
  display: none !important;
}

.language-menu summary {
  display: flex;
  min-width: 76px;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 32px 0 12px;
  border: 1px solid rgb(255 255 255 / 55%);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 720;
  list-style: none;
}

.language-menu summary img {
  filter: brightness(0) invert(1);
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu[open]::after {
  transform: translateY(-20%) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--canvas);
}

.language-options a {
  padding: 9px 10px;
  border-bottom: 1px solid var(--divider);
  font-size: 0.86rem;
  font-weight: 680;
  text-decoration: none;
}

.language-options a:hover,
.language-options a:focus-visible,
.language-options a[aria-current="page"] {
  color: var(--red);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgb(255 255 255 / 55%);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 77px);
  padding: clamp(72px, 10vw, 144px) 0;
  color: var(--white);
  background: var(--red);
}

.coming-soon-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.coming-soon-main {
  display: flex;
  flex: 1;
}

.coming-soon {
  position: relative;
  display: flex;
  width: 100%;
  flex: 1;
  align-items: center;
  padding: clamp(58px, 7vw, 104px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.coming-soon::before {
  position: absolute;
  top: 0;
  right: var(--page-gutter);
  left: var(--page-gutter);
  height: 1px;
  background: rgb(255 255 255 / 35%);
  content: "";
}

.coming-soon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "copy visual"
    "newsletter newsletter";
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(46px, 6vw, 90px) clamp(48px, 8vw, 120px);
}

.coming-soon-copy {
  grid-area: copy;
  max-width: 720px;
}

.coming-soon-title {
  margin: 0;
  font-size: clamp(3.8rem, 7.4vw, 7.1rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.coming-soon-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.coming-soon-status {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0 2px;
  border-bottom: 1px solid rgb(255 255 255 / 55%);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsletter-signup {
  grid-area: newsletter;
  width: 100%;
  max-width: none;
  padding-top: 30px;
  margin-top: 0;
  border-top: 1px solid rgb(255 255 255 / 45%);
}

.newsletter-signup .inf-form > div {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(32px, 6vw, 86px);
  padding: clamp(28px, 4vw, 48px);
  margin: 0;
  border: 0;
  color: var(--ink-secondary);
  background: var(--canvas);
}

.newsletter-signup .inf-form h4 {
  grid-column: 1;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.3;
}

.newsletter-signup .inf-form > div > span {
  grid-column: 1;
  color: var(--ink-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.newsletter-signup .inf-form .inf-content {
  grid-column: 2;
  grid-row: 1 / span 3;
  padding-left: clamp(26px, 4vw, 58px);
  margin-top: 0;
  border-left: 1px solid var(--divider);
}

.newsletter-signup .inf-form .inf-content .inf-input {
  margin-bottom: 12px;
}

.newsletter-signup .inf-form .inf-content .inf-input input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--divider);
  color: var(--ink);
  background: var(--canvas);
  font: inherit;
}

.newsletter-signup .inf-form .inf-content .inf-input input:focus {
  border-color: var(--red);
  outline: 3px solid var(--red-surface);
}

.newsletter-signup .inf-form .inf-rgpd {
  margin: 16px 0;
  color: var(--ink-tertiary);
  font-size: 0.78rem;
  line-height: 1.5;
}

.newsletter-signup .inf-form .inf-submit {
  text-align: left;
}

.newsletter-signup .inf-form .inf-content .inf-submit input[type="submit"] {
  min-height: 44px;
  padding: 11px 18px;
  margin-top: 18px;
  border: 0;
  color: var(--white);
  background: var(--red);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.newsletter-signup .inf-form .inf-content .inf-submit input[type="submit"]:hover {
  background: var(--red-pressed);
}

.newsletter-signup .inf-form .inf-success p {
  margin-bottom: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgb(255 255 255 / 20%);
}

.coming-soon-visual {
  position: relative;
  grid-area: visual;
  width: 100%;
  min-height: 560px;
  justify-self: stretch;
  overflow: visible;
  border-left: 1px solid rgb(255 255 255 / 50%);
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transform: none;
}

.coming-soon-visual::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(56vw, 760px);
  aspect-ratio: 1052 / 744;
  background: url("../images/switzerland-cantons.svg") center / contain no-repeat;
  content: "";
  filter: brightness(0) invert(1);
  transform: translate(-48%, calc(-50% + var(--map-shift, 0))) rotate(-4deg);
}

.coming-soon-visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62%, 300px);
  height: auto;
  border-radius: 24%;
  box-shadow: 0 2rem 5rem rgb(79 10 5 / 32%);
  transform: translate(-34%, -47%) rotate(4deg);
}

.hero::before {
  position: absolute;
  top: 2%;
  right: -8%;
  width: min(62vw, 960px);
  aspect-ratio: 1052 / 744;
  background: url("../images/switzerland-cantons.svg") center / contain no-repeat;
  content: "";
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: translateY(var(--map-shift, 0)) rotate(-5deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.hero .eyebrow {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 8.3vw, 7.8rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.hero-title span {
  color: inherit;
}

.hero-mobile-map {
  display: none;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.store-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.store-link {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
}

.store-link img {
  width: auto;
  height: 56px;
}

.store-link[data-store="google"] img {
  height: 67px;
  margin: -6px -8px;
}

.store-link-unavailable {
  cursor: not-allowed;
  filter: grayscale(0.15);
  opacity: 0.7;
}

.store-note {
  width: 100%;
  margin: 2px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.78rem;
}

.hero-visual {
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
  padding: 54px;
}

.app-preview {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  padding: 13px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: 0 2rem 5rem rgb(78 0 0 / 22%);
  transform: translate3d(var(--phone-shift-x, 0), var(--phone-shift-y, 0), 0) rotate(calc(1.5deg + var(--phone-rotation, 0deg)));
  will-change: transform;
}

.app-preview-screen {
  min-height: 548px;
  padding: 38px 22px 24px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--ink);
  background: var(--canvas);
}

.app-preview-logo {
  width: 66px;
  height: 66px;
  margin-bottom: 8px;
}

.app-preview-tagline {
  max-width: 220px;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.app-preview-map {
  width: 100%;
  margin: 30px auto 18px;
}

.app-preview-progress {
  padding: 16px;
  background: var(--surface);
}

.app-preview-progress p {
  margin: 0 0 9px;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  background: var(--divider);
}

.progress-track span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--red);
}

.concept {
  padding: clamp(70px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--divider);
  background: var(--canvas);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 9vw, 140px);
}

.concept-number {
  margin: -0.12em 0 0;
  color: var(--red);
  font-size: clamp(9rem, 23vw, 19rem);
  font-weight: 620;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.concept-copy blockquote {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: .98;
}

.concept-copy p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-secondary);
  font-size: 1.1rem;
}

.features {
  padding: clamp(80px, 11vw, 150px) 0;
  background: var(--surface-alt);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 28px clamp(24px, 3vw, 42px);
  border-top: 1px solid var(--divider);
  border-right: 1px solid var(--divider);
  background: transparent;
  transition: color 240ms var(--ease-out), background-color 240ms var(--ease-out);
}

.feature-card:first-child {
  border-left: 1px solid var(--divider);
}

.feature-card:hover {
  color: var(--white);
  background: var(--red);
}

.feature-number {
  display: block;
  margin-bottom: 84px;
  color: var(--red);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.feature-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1;
}

.feature-card p {
  margin: 16px 0 0;
  color: var(--ink-secondary);
}

.feature-card:hover .feature-number,
.feature-card:hover p {
  color: rgb(255 255 255 / 82%);
}

.showcase {
  overflow: hidden;
  padding: clamp(76px, 10vw, 138px) 0;
  background: var(--ink);
  color: var(--white);
}

.showcase .eyebrow {
  color: #ff6a60;
}

.showcase .section-intro {
  color: #bdbbb7;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 1px;
  background: #4a4945;
  margin-top: 58px;
}

.showcase-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 46px);
  overflow: hidden;
  background: #242321;
}

.showcase-card:first-child {
  background: var(--red);
}

.showcase-card h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.showcase-card p {
  max-width: 460px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.showcase-map {
  position: relative;
  width: min(90%, 580px);
  margin: 42px auto 10px;
  background: transparent;
}

.showcase-map-graphic {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-finish {
  width: min(70%, 240px);
  height: auto;
  margin: 24px auto -24px;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.28));
}

.cantons {
  padding: clamp(80px, 11vw, 154px) 0;
  border-bottom: 1px solid var(--divider);
  background: var(--canvas);
}

.cantons-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.canton-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--divider);
  border-radius: 18px;
}

.canton-index span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  color: var(--ink-secondary);
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.canton-index span:nth-child(4n) {
  border-right: 0;
}

.canton-index span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.canton-index .canton-progress-level-1 {
  color: var(--red);
  background: var(--red-surface);
}

.canton-index .canton-progress-level-2 {
  color: var(--ink);
  background: var(--red-progress);
}

.canton-index .canton-progress-level-3 {
  color: var(--white);
  background: var(--red);
}

.cantons-copy .section-intro {
  margin-bottom: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  min-height: 3.25rem;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
  text-decoration: none;
}

.download {
  padding: clamp(70px, 10vw, 130px) 0;
  color: var(--white);
  background: var(--red);
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.download-panel::after {
  position: absolute;
  right: 6%;
  top: 50%;
  width: min(22vw, 300px);
  aspect-ratio: 1052 / 744;
  background: url("../images/switzerland-cantons.svg") center / contain no-repeat;
  content: "";
  filter: brightness(0) invert(1);
  opacity: .18;
  transform: translateY(-50%);
}

.download-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 5.7vw, 5.6rem);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.download-panel p {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.download-panel .store-group {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
}

.download-panel .store-note {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 60px 0 24px;
  border-top: 1px solid #3b3a36;
  color: var(--white);
  background: var(--ink);
}

.site-footer-compact {
  padding: 20px 0;
}

.footer-compact {
  display: flex;
  justify-content: flex-end;
  color: #aaa79f;
  font-size: 0.78rem;
}

.footer-compact p {
  margin: 0;
}

.footer-compact a {
  color: inherit;
  font-weight: 700;
}

.footer-compact a:hover,
.footer-compact a:focus-visible {
  color: var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: #aaa79f;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid #3b3a36;
  color: #aaa79f;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: inherit;
  font-weight: 700;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--red);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 120px) 0 clamp(52px, 7vw, 96px);
  border-bottom: 1px solid rgb(255 255 255 / 45%);
  color: var(--white);
  background: var(--red);
}

.page-hero::after {
  position: absolute;
  top: 2%;
  right: -8%;
  width: min(56vw, 860px);
  aspect-ratio: 1052 / 744;
  background: url("../images/switzerland-cantons.svg") center / contain no-repeat;
  content: "";
  filter: brightness(0) invert(1);
  opacity: .14;
  transform: translateY(var(--map-shift, 0)) rotate(-5deg);
}

.page-hero > .shell {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--white);
}

.page-hero .section-intro {
  max-width: 760px;
  color: rgb(255 255 255 / 82%);
}

.page-layout {
  background: var(--surface-alt);
}

main:has(.page-layout) {
  background: var(--surface-alt);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  padding: clamp(60px, 9vw, 120px) 0;
}

.page-aside {
  align-self: start;
  padding-top: 6px;
}

.page-aside p {
  margin: 0 0 8px;
  color: var(--ink-tertiary);
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-aside strong {
  display: block;
  overflow-wrap: anywhere;
}

.prose {
  max-width: 790px;
}

.prose section + section {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--divider);
}

.prose h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.prose h3 {
  margin: 30px 0 0;
  font-size: 1.08rem;
}

.prose p,
.prose li {
  color: var(--ink-secondary);
}

.prose p {
  margin: 18px 0 0;
}

.prose ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.prose li + li {
  margin-top: 10px;
}

.template-notice,
.contact-card,
.legal-details {
  padding: 24px;
  border: 1px solid var(--divider);
  background: var(--red-surface);
}

.template-notice {
  margin-bottom: 54px;
  border-left: 4px solid var(--red);
}

.template-notice p,
.contact-card p {
  margin: 0;
  color: var(--ink);
}

.legal-details {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 16px 28px;
  margin: 22px 0 0;
}

.legal-details dt {
  color: var(--ink-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.placeholder-value {
  color: var(--red);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.faq-list section + section {
  margin-top: 0;
  padding: 30px 0;
}

.faq-list section:first-child {
  padding-top: 0;
}

.contact-card {
  margin-top: 34px;
}

.credit-highlight {
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--divider);
  background: var(--red-surface);
}

.credit-highlight p {
  margin: 0;
  color: var(--ink);
}

.credit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--divider);
  list-style: none;
}

.credit-list li {
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 700;
}

.credit-list li:nth-child(odd) {
  border-right: 1px solid var(--divider);
}

.credit-list li:nth-child(n + 3) {
  border-top: 1px solid var(--divider);
}

.contact-value {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-style: normal;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.error-page {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 70px 0;
  color: var(--white);
  background: var(--red);
}

.error-page::before {
  position: absolute;
  top: 8%;
  right: -12%;
  width: min(62vw, 960px);
  aspect-ratio: 1052 / 744;
  background: url("../images/switzerland-cantons.svg") center / contain no-repeat;
  content: "";
  filter: brightness(0) invert(1);
  opacity: .14;
  transform: rotate(-5deg);
}

.error-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.error-code {
  margin: 0;
  color: var(--white);
  font-size: clamp(8rem, 24vw, 20rem);
  font-weight: 620;
  letter-spacing: -0.1em;
  line-height: 0.75;
}

.error-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.error-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 1.1rem;
}

.button-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 22px;
  border: 1px solid var(--white);
  color: var(--red);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-link:hover {
  color: var(--white);
  background: transparent;
}

[data-motion-ready="true"] [data-motion-item] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 650ms var(--ease-out), transform 850ms var(--ease-out);
  transition-delay: var(--motion-delay, 0ms);
}

[data-motion-ready="true"] [data-motion-item="scale"] {
  transform: scale(.94) rotate(-2deg);
}

[data-motion-ready="true"] [data-motion-item="line"] {
  transform: translateX(-2.5rem);
}

[data-motion-ready="true"] [data-motion-item][data-motion-state="visible"] {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .language-control {
    grid-column: 4;
  }

  .header-inner-minimal {
    grid-template-columns: auto auto;
  }

  .header-inner-minimal .language-control {
    grid-column: 2;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 14px 24px 22px;
    border-bottom: 1px solid rgb(255 255 255 / 45%);
    color: var(--white);
    background: var(--red);
  }

  .site-navigation.is-open {
    display: grid;
  }

  .site-navigation a {
    padding: 11px 0;
  }

  .site-navigation a::after {
    display: none;
  }

  .hero-grid,
  .coming-soon-grid,
  .cantons-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .coming-soon-grid {
    grid-template-areas:
      "copy"
      "visual"
      "newsletter";
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero::before {
    top: auto;
    right: -12%;
    bottom: 4rem;
    width: min(94vw, 760px);
  }

  .coming-soon-copy {
    max-width: 760px;
  }

  .coming-soon-visual {
    width: 100%;
    min-height: 500px;
    justify-self: stretch;
    border-top: 1px solid rgb(255 255 255 / 50%);
    border-left: 0;
  }

  .hero-visual {
    min-height: 570px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    border-left: 1px solid var(--divider);
    border-bottom: 0;
  }

  .feature-card:last-child {
    border-bottom: 1px solid var(--divider);
  }

  .feature-number {
    margin-bottom: 44px;
  }

  .download-panel .store-group {
    display: flex;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .language-selector {
    width: 58px;
    padding-left: 9px;
    color: transparent;
  }

  .language-selector option {
    color: var(--ink);
  }

  .language-menu summary {
    min-width: 58px;
    width: 58px;
    padding-right: 24px;
    padding-left: 8px;
    gap: 5px;
  }

  .language-control::before {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 10px;
    width: 16px;
    height: 16px;
    background: url("../images/language-globe.svg") center / contain no-repeat;
    content: "";
    filter: brightness(0) invert(1);
    pointer-events: none;
    transform: translateY(-50%);
  }

  .hero {
    min-height: auto;
    padding: 52px 0 72px;
  }

  .hero-title {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: clamp(3.4rem, 17vw, 5.8rem);
  }

  .hero-title span {
    background: var(--red);
    box-decoration-break: clone;
    box-shadow: 0.09em 0 0 var(--red), -0.09em 0 0 var(--red);
    -webkit-box-decoration-break: clone;
  }

  .hero .eyebrow {
    width: fit-content;
    padding-right: 4px;
    background: var(--red);
    box-shadow: 0 0 0 4px var(--red);
  }

  .hero::before {
    display: none;
  }

  .hero-mobile-map {
    position: relative;
    z-index: 0;
    display: block;
    width: min(100%, 500px);
    aspect-ratio: 1052 / 744;
    margin: -2.5rem auto 0;
    background: url("../images/switzerland-cantons.svg") center / contain no-repeat;
    filter: brightness(0) invert(1);
    transform: rotate(-4deg);
  }

  .hero-visual {
    display: none;
  }

  .canton-index {
    display: none;
  }

  .coming-soon {
    padding: 52px 0 72px;
  }

  .coming-soon-title {
    font-size: clamp(3.25rem, 16vw, 5.4rem);
  }

  .coming-soon-visual {
    width: 100%;
    min-height: 430px;
  }

  .page-hero::after {
    right: -48%;
    width: 130vw;
    opacity: .11;
  }

  .coming-soon-visual::before {
    width: 112vw;
  }

  .coming-soon-visual img {
    width: min(54%, 230px);
    transform: translate(-42%, -48%) rotate(4deg);
  }

  .newsletter-signup .inf-form > div {
    display: block;
  }

  .newsletter-signup .inf-form .inf-content {
    padding-top: 22px;
    padding-left: 0;
    margin-top: 22px;
    border-top: 1px solid var(--divider);
    border-left: 0;
  }

  .app-preview {
    width: min(88%, 310px);
  }

  .app-preview-screen {
    min-height: 470px;
    padding: 30px 19px 20px;
  }

  .concept-grid,
  .showcase-grid,
  .page-layout,
  .error-grid {
    grid-template-columns: 1fr;
  }

  .concept-number {
    font-size: 11rem;
  }

  .showcase-card {
    min-height: 420px;
  }

  .showcase-grid {
    gap: 1px;
  }

  .canton-index span {
    min-height: 60px;
  }

  .download-panel {
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    display: grid;
    justify-content: start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-aside {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
  }

  .page-aside p {
    margin: 0;
  }

  .page-title {
    font-size: clamp(3.25rem, 15vw, 5.5rem);
  }

  .legal-details {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .credit-list {
    grid-template-columns: 1fr;
  }

  .credit-list li:nth-child(odd) {
    border-right: 0;
  }

  .credit-list li:nth-child(n + 2) {
    border-top: 1px solid var(--divider);
  }

  .legal-details dd + dt {
    margin-top: 14px;
  }

  .error-page {
    place-items: start;
  }

  .error-code {
    font-size: 10rem;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 8px;
  }

  .brand-link,
  .brand-link img {
    width: 44px;
    height: 44px;
  }

  .store-group {
    display: grid;
    justify-items: start;
  }

  .hero-visual {
    margin-inline: -8px;
  }

  .app-preview {
    transform: translate3d(calc(5% + var(--phone-shift-x, 0px)), var(--phone-shift-y, 0), 0) rotate(calc(1.5deg + var(--phone-rotation, 0deg)));
  }

  .coming-soon-visual {
    transform: none;
  }

  .feature-card {
    padding: 24px;
  }

  .download-panel h2 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .download-panel::after {
    right: 4%;
    top: 50%;
    bottom: auto;
    width: 82vw;
    opacity: .14;
    transform: translateY(-50%);
  }

  .footer-links a {
    min-height: 2.75rem;
  }

  .download-panel .store-group {
    display: grid;
  }

  .canton-index {
    grid-template-columns: repeat(3, 1fr);
  }

  .canton-index span:nth-child(4n) {
    border-right: 1px solid var(--divider);
  }

  .canton-index span:nth-child(3n) {
    border-right: 0;
  }

  .canton-index span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--divider);
  }

  .canton-index span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  .page-hero {
    padding: 32px 0;
  }

  .page-layout {
    display: block;
    padding: 32px 0;
  }

  .page-aside {
    margin-bottom: 32px;
  }
}
  filter: brightness(0) invert(1);
  font-weight: 620;
