/*! Navora v1.0.0 | https://navora.xyz */
:root {
  --blue: #2f72f4;
  --blue-strong: #1659d8;
  --blue-deep: #0f397c;
  --blue-bright: #58a8ee;
  --blue-soft: #edf6ff;
  --blue-pale: #f6faff;
  --ink: #101827;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #e5eaf1;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --mint: #21bd83;
  --mint-soft: #e9faf4;
  --violet: #776cf2;
  --violet-soft: #f0efff;
  --coral: #ec754e;
  --coral-soft: #fff0eb;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.consent-open,
body.reservation-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
select {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

:focus-visible {
  outline: 3px solid rgba(47, 114, 244, 0.28);
  outline-offset: 3px;
}

.shell {
  width: min(100% - 64px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #dcecff;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading--wide {
  max-width: 820px;
}

.section-heading--compact {
  max-width: 540px;
  margin-bottom: 0;
}

.section-heading h2,
.card-feature__copy h2,
.account-showcase__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
}

.section-heading p,
.card-feature__copy > p,
.account-showcase__copy > p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.consent-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.consent-button--primary:hover {
  color: #fff;
  background: var(--blue-strong);
  border-color: var(--blue-strong);
  transform: translateY(-1px);
}

.button--small {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 12px;
}

.button--quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(47, 114, 244, 0.2);
}

.button--quiet:hover {
  color: var(--blue-strong);
  background: #fff;
  border-color: var(--blue);
}

.button--white {
  color: var(--blue-strong);
  background: #fff;
  border-color: #fff;
}

.button--white:hover {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-color: var(--blue-soft);
}

.button--blue-quiet {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--blue-quiet:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-strong);
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 750;
}

.text-link:hover {
  color: var(--blue-deep);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 74px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-navigation:not([hidden])) {
  border-color: rgba(229, 234, 241, 0.92);
  box-shadow: 0 12px 28px rgba(16, 24, 39, 0.05);
}

.site-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  height: 74px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: -moz-max-content;
  min-width: max-content;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.site-brand img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.site-nav__links a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}

.site-nav__links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: var(--ink);
}

.site-nav__links a.is-active::after {
  transform: scaleX(1);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.language-control {
  position: relative;
}

.language-control__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.language-control__caret {
  font-size: 10px;
}

.language-control__menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 20;
  width: 162px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(16, 24, 39, 0.12);
}

.language-control__option {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 650;
}

.language-control__option:hover,
.language-control__option.is-current {
  background: var(--blue-soft);
}

.language-control__option i {
  color: var(--blue);
  opacity: 0;
}

.language-control__option.is-current i {
  opacity: 1;
}

.mobile-menu-button {
  display: none;
}

.mobile-navigation {
  position: fixed;
  top: 74px;
  right: 0;
  left: 0;
  z-index: 99;
  padding: 12px 24px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 36px rgba(16, 24, 39, 0.08);
}

.mobile-navigation a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 750;
}

.mobile-navigation a::after {
  color: var(--muted);
  font-family: bootstrap-icons;
  font-size: 14px;
  content: "\f285";
}

.mobile-navigation a.is-active {
  color: var(--blue-strong);
}

/* Home */
.home-hero {
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.home-hero__inner {
  display: grid;
  min-height: min(760px, 100svh - 74px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(54px, 7vw, 96px);
  padding-top: 42px;
  padding-bottom: 42px;
}

.home-hero__copy {
  max-width: 680px;
}

.launch-announcement {
  display: inline-grid;
  grid-template-columns: 38px auto;
  align-items: center;
  gap: 11px;
  margin-bottom: 23px;
  padding: 8px 13px 8px 9px;
  background: var(--surface-soft);
  border: 1px solid #d8e3f2;
  border-radius: 8px;
}

.launch-announcement__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
}

.launch-announcement > span:last-child {
  display: grid;
  line-height: 1.2;
}

.launch-announcement small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.launch-announcement b {
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
}

.home-hero h1 {
  margin-bottom: 9px;
  font-size: clamp(66px, 8vw, 112px);
  font-weight: 800;
}

.display-copy {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(31px, 4vw, 54px);
  font-weight: 750;
  line-height: 1.13;
  text-wrap: balance;
}

.lead-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.home-hero__visual {
  display: grid;
  width: min(100%, 560px);
  height: min(650px, 100svh - 128px);
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  justify-self: end;
  place-items: center;
}

.home-hero__phone {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(13, 54, 111, 0.18));
}

.product-intro {
  background: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability {
  min-height: 260px;
  padding: 34px;
  background: var(--surface-soft);
  border-radius: 8px;
}

.capability__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 62px;
  place-items: center;
  border-radius: 50%;
  font-size: 21px;
}

.capability--violet .capability__icon {
  color: var(--violet);
  background: var(--violet-soft);
}

.capability--mint .capability__icon {
  color: var(--mint);
  background: var(--mint-soft);
}

.capability--blue .capability__icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.capability h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.account-showcase {
  padding: 36px 0 112px;
  background: #fff;
}

.account-showcase__frame {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: start;
  gap: clamp(50px, 7vw, 92px);
  padding: clamp(54px, 7vw, 88px);
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.account-showcase__copy {
  position: relative;
  z-index: 2;
}

.account-showcase__copy > p {
  color: #dceaff;
}

.account-showcase__points {
  display: grid;
  gap: 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.account-showcase__points span {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.account-showcase__points i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 17px;
}

.card-feature {
  padding: 120px 0;
  color: #fff;
  background: var(--blue-bright);
  overflow: hidden;
}

.card-feature__inner {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 86px;
}

.card-feature__visual {
  position: relative;
  padding: 90px 18px;
}

.card-feature__visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.36));
  transform: rotate(-4deg);
}

.card-feature__copy > p {
  color: #f0f8ff;
}

.card-feature__points {
  display: grid;
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-feature__points span {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-feature__points i {
  color: #fff;
  font-size: 20px;
}

.card-feature__points b {
  font-size: 14px;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 90px;
}

.security-list {
  border-top: 1px solid var(--line);
}

.security-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.security-list > article > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 20px;
}

.security-list article:nth-child(2) > i {
  color: var(--violet);
  background: var(--violet-soft);
}

.security-list article:nth-child(3) > i {
  color: var(--mint);
  background: var(--mint-soft);
}

.security-list h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 800;
}

.security-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.closing-callout {
  padding: 70px 0;
  background: var(--blue-soft);
  border-top: 1px solid #dceafb;
}

.closing-callout__inner {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 26px;
}

.closing-callout h2 {
  margin-bottom: 7px;
  font-size: 30px;
  font-weight: 800;
}

.closing-callout .eyebrow {
  margin-bottom: 7px;
}

.closing-callout p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Card page */
.card-hero {
  color: #fff;
  background: var(--blue-bright);
  overflow: hidden;
}

.card-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: 70px;
  min-height: min(760px, 100svh - 74px);
  padding-top: 78px;
  padding-bottom: 78px;
}

.card-hero__copy {
  position: relative;
  z-index: 2;
}

.card-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  text-wrap: balance;
}

.card-hero__copy > p {
  max-width: 580px;
  margin-bottom: 32px;
  color: #e9f4ff;
  font-size: 17px;
  line-height: 1.8;
}

.card-hero__visual {
  position: relative;
  padding: 70px 10px;
}

.card-hero__visual img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 30px 38px rgba(17, 47, 91, 0.34));
  transform: rotate(-5deg);
}

.service-rail {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.service-rail .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-rail span {
  display: grid;
  min-height: 116px;
  grid-template-columns: 34px 1fr;
  align-content: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  padding: 20px 34px;
  border-right: 1px solid var(--line);
}

.service-rail span:first-child {
  padding-left: 0;
}

.service-rail span:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-rail i {
  grid-row: 1/3;
  color: var(--blue);
  font-size: 25px;
}

.service-rail b {
  font-size: 14px;
}

.service-rail small {
  color: var(--muted);
  font-size: 12px;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.control-grid article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.control-grid article:last-child {
  border-right: 0;
}

.control-grid__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 68px;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.control-grid__icon--blue {
  color: var(--blue);
  background: var(--blue-soft);
}

.control-grid__icon--mint {
  color: var(--mint);
  background: var(--mint-soft);
}

.control-grid__icon--violet {
  color: var(--violet);
  background: var(--violet-soft);
}

.control-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.control-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-journey {
  padding: 112px 0;
  background: var(--blue-pale);
}

.card-journey__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.journey-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #dce5ef;
  list-style: none;
}

.journey-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid #dce5ef;
}

.journey-list li > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.journey-list h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 800;
}

.journey-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.availability-note {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.availability-note__inner {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 22px;
}

.availability-note__inner > i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 21px;
}

.availability-note h2 {
  margin-bottom: 5px;
  font-size: 22px;
}

.availability-note p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

/* About page */
.about-hero {
  background: var(--blue-soft);
  overflow: hidden;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: 90px;
  min-height: min(720px, 100svh - 74px);
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-hero__copy {
  min-width: 0;
}

.about-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.5vw, 86px);
  font-weight: 800;
}

.about-hero__copy > p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.about-hero__visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  background: var(--blue);
  border-radius: 8px;
}

.about-mark {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 16px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.about-mark img {
  width: 112px;
  height: 112px;
  filter: brightness(0) invert(1);
}

.mission-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.mission-layout h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 62px);
}

.mission-layout p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.mission-layout .mission-lead {
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
}

.principles-section {
  padding: 112px 0;
  color: #fff;
  background: var(--blue-deep);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-grid article {
  min-height: 230px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-grid article > span {
  display: block;
  margin-bottom: 50px;
  color: #8fc2ff;
  font-size: 12px;
  font-weight: 800;
}

.principle-grid h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.principle-grid p {
  margin-bottom: 0;
  color: #cfe0ff;
  font-size: 14px;
}

.beta-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 100px;
}

.beta-visual {
  display: grid;
  place-items: center;
}

.beta-visual img {
  width: min(100%, 420px);
  max-height: 570px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(13, 54, 111, 0.16));
}

.beta-layout .button {
  margin-top: 28px;
}

/* Download page */
.download-hero {
  background: var(--blue-soft);
  overflow: hidden;
}

.download-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.78fr);
  align-items: center;
  gap: 72px;
  min-height: min(740px, 100svh - 74px);
  padding-top: 72px;
}

.download-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(60px, 7.5vw, 100px);
  font-weight: 800;
}

.download-hero__copy > p {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button--download {
  min-width: 270px;
  min-height: 66px;
  justify-content: flex-start;
  padding: 0 18px;
}

.button--download > i:first-child {
  font-size: 25px;
}

.button--download > i:last-child {
  margin-left: auto;
}

.button--download span {
  display: grid;
  gap: 3px;
  text-align: left;
}

.button--download small {
  color: #dbeafe;
  font-size: 10px;
  font-weight: 650;
}

.button--download b {
  font-size: 15px;
}

.button--ios {
  color: var(--ink);
  background: #fff;
  border-color: #c9d7e9;
}

.button--ios small {
  color: var(--muted);
}

.button--ios:hover {
  color: var(--blue-strong);
  background: #fff;
  border-color: var(--blue);
}

.button--download.is-reserved,
.button--download.is-reserved:hover {
  color: #176b4e;
  background: var(--mint-soft);
  border-color: #a9e5cf;
  box-shadow: none;
  cursor: default;
  opacity: 1;
}

.button--download.is-reserved small {
  color: #477566;
}

.is-apple-mobile .button--ios {
  order: -1;
}

.download-source {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 17px 0 0 !important;
  color: var(--muted) !important;
  font-size: 12px !important;
}

.download-source i {
  color: var(--mint);
}

.download-hero__visual {
  align-self: end;
  justify-self: center;
  width: min(100%, 430px);
}

.download-hero__visual img {
  width: 100%;
  filter: drop-shadow(0 26px 30px rgba(36, 68, 112, 0.16));
}

.release-summary {
  border-bottom: 1px solid var(--line);
}

.release-summary .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.release-summary span {
  display: grid;
  min-height: 112px;
  grid-template-columns: 38px 1fr;
  align-content: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  padding: 20px 34px;
  border-right: 1px solid var(--line);
}

.release-summary span:first-child {
  padding-left: 0;
}

.release-summary span:last-child {
  padding-right: 0;
  border-right: 0;
}

.release-summary i {
  grid-row: 1/3;
  color: var(--blue);
  font-size: 25px;
}

.release-summary b {
  font-size: 14px;
}

.release-summary small {
  color: var(--muted);
  font-size: 12px;
}

.download-trust__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 100px;
}

.release-list {
  border-top: 1px solid var(--line);
}

.release-list > div {
  display: grid;
  min-height: 82px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.release-list i {
  color: var(--blue);
  font-size: 23px;
}

.release-list span {
  display: grid;
}

.release-list b {
  font-size: 14px;
}

.release-list small {
  color: var(--muted);
  font-size: 12px;
}

.release-list em {
  padding: 6px 9px;
  color: var(--blue-strong);
  background: var(--blue-soft);
  border-radius: 5px;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.release-list .is-muted i {
  color: #98a2b3;
}

.ios-install {
  background: #f8fbff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ios-install__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: 92px;
}

.ios-install .section-heading .button {
  margin-top: 28px;
}

.ios-install__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.ios-install__steps li {
  display: grid;
  min-height: 108px;
  grid-template-columns: 40px 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.ios-install__steps li > span {
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
}

.ios-install__steps li > i {
  color: var(--blue);
  font-size: 24px;
}

.ios-install__steps b {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.ios-install__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.download-support {
  padding: 64px 0;
  color: #fff;
  background: var(--blue);
}

.download-support__inner {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 22px;
}

.download-support__inner > i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue-strong);
  background: #fff;
  border-radius: 50%;
  font-size: 22px;
}

.download-support h2 {
  margin-bottom: 4px;
  font-size: 26px;
}

.download-support p {
  margin-bottom: 0;
  color: #dceaff;
  font-size: 14px;
}

/* Contact page */
.contact-hero {
  padding: 94px 0 108px;
  background: var(--blue-soft);
  border-bottom: 1px solid #dceafb;
}

.contact-hero__heading {
  max-width: 1240px;
}

.contact-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 7.5vw, 100px);
  font-weight: 800;
}

.contact-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-main {
  padding: 100px 0 112px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  align-items: start;
  gap: 90px;
}

.contact-copy {
  display: grid;
  gap: 28px;
  padding-top: 20px;
}

.contact-route {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-route > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 19px;
}

.contact-route h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-route p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 750;
}

.contact-security {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-security i {
  color: var(--blue);
}

.contact-security p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(16, 24, 39, 0.08);
}

.contact-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-panel__heading h2,
.contact-success h2 {
  margin-bottom: 0;
  font-size: 29px;
}

.contact-panel__heading > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field--wide,
.form-status,
.contact-submit {
  grid-column: 1/-1;
}

.contact-field label {
  font-size: 12px;
  font-weight: 750;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d6dde7;
  border-radius: 6px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field input,
.contact-field select {
  height: 50px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 138px;
  padding: 13px 14px;
  line-height: 1.6;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 114, 244, 0.11);
}

.contact-form.was-validated :invalid {
  border-color: #dc2626;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 42px;
}

.select-wrap i {
  position: absolute;
  top: 50%;
  right: 15px;
  color: var(--muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.field-note {
  color: var(--muted);
  font-size: 11px;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  font-size: 12px;
}

.form-status[data-type=error] {
  color: #b91c1c;
}

.form-status[data-type=progress] {
  color: var(--blue);
}

.contact-submit {
  width: 100%;
}

.button-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: navora-spin 700ms linear infinite;
}

.contact-submit.is-loading .button-spinner {
  display: block;
}

.contact-submit.is-loading > i {
  display: none;
}

@keyframes navora-spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-success {
  padding: 66px 20px 44px;
  text-align: center;
}

.contact-success__icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  place-items: center;
  color: #0d9f6e;
  background: var(--mint-soft);
  border-radius: 50%;
  font-size: 34px;
}

.contact-success > p {
  max-width: 430px;
  margin: 14px auto 24px;
  color: var(--muted);
  font-size: 14px;
}

.contact-success > div {
  display: grid;
  gap: 3px;
  max-width: 310px;
  margin: 0 auto 20px;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-success small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-success strong {
  color: var(--blue);
  font-size: 15px;
}

.support-values {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-values .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.support-values article {
  min-height: 228px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.support-values article:first-child {
  padding-left: 0;
}

.support-values article:last-child {
  padding-right: 0;
  border-right: 0;
}

.support-values i {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 24px;
}

.support-values h2 {
  margin-bottom: 8px;
  font-size: 19px;
}

.support-values p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Legal pages */
.legal-hero {
  padding: 92px 0 76px;
  background: var(--blue-soft);
  border-bottom: 1px solid #dceafb;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
}

.legal-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-document {
  max-width: 880px;
  padding-top: 80px;
  padding-bottom: 110px;
}

.legal-document section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 13px;
  font-size: 24px;
}

.legal-document p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.legal-document a:not(.button):not(.text-link) {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-document .button,
.legal-document .text-link {
  margin-top: 22px;
}

/* Footer */
.site-footer {
  padding: 78px 0 28px;
  color: #fff;
  background: #0b1f42;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 64px;
  padding-bottom: 58px;
}

.site-footer__brand .site-brand {
  margin-bottom: 16px;
  color: #fff;
}

.site-footer__brand .site-brand img {
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  max-width: 350px;
  margin-bottom: 0;
  color: #aabbd5;
  font-size: 13px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #8fa5c6;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__grid > div:not(.site-footer__brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.site-footer__grid a,
.footer-link {
  margin-bottom: 10px;
  color: #d8e3f4;
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}

.footer-link {
  padding: 0;
}

.site-footer__grid a:hover,
.footer-link:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: #8fa5c6;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

/* Cookie consent */
.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
}

.consent-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100%, 1180px);
  margin-inline: auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #dce4ef;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(16, 24, 39, 0.17);
  backdrop-filter: blur(18px);
}

.consent-banner__copy {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 15px;
}

.consent-banner__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 19px;
}

.consent-banner h2 {
  margin-bottom: 5px;
  font-size: 18px;
}

.consent-banner p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.consent-banner p a {
  color: var(--blue-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner__actions {
  display: flex;
  gap: 8px;
}

.consent-button {
  min-height: 44px;
  padding-inline: 14px;
  font-size: 12px;
}

.consent-button--outline {
  color: var(--blue-strong);
  background: #fff;
  border-color: var(--blue);
}

.consent-button--outline:hover {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-color: var(--blue-strong);
}

.consent-button--quiet {
  color: var(--ink-soft);
  background: var(--surface-soft);
  border-color: var(--line);
}

.consent-button--quiet:hover {
  color: var(--ink);
  background: #eef2f6;
  border-color: #d4dce7;
}

.consent-overlay {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 23, 44, 0.52);
  backdrop-filter: blur(5px);
}

.consent-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(9, 20, 42, 0.28);
}

.consent-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.consent-dialog__header .eyebrow {
  margin-bottom: 9px;
}

.consent-dialog__header h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.consent-dialog__header p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.consent-dialog__close {
  flex: 0 0 auto;
}

.consent-dialog__form {
  padding: 0 30px 30px;
}

.consent-category {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.consent-category h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.consent-category p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.consent-category__locked {
  padding: 6px 9px;
  color: var(--blue-strong);
  background: var(--blue-soft);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.consent-toggle {
  position: relative;
  display: block;
  width: 48px;
  height: 28px;
}

.consent-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-toggle span {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 14px;
  transition: background 160ms ease;
}

.consent-toggle span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(16, 24, 39, 0.2);
  content: "";
  transition: transform 160ms ease;
}

.consent-toggle input:checked + span {
  background: var(--blue);
}

.consent-toggle input:checked + span::after {
  transform: translateX(20px);
}

.consent-toggle input:focus-visible + span {
  outline: 3px solid rgba(47, 114, 244, 0.26);
  outline-offset: 3px;
}

.consent-dialog__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 24px;
}

/* Launch reservation */
.reservation-overlay {
  position: fixed;
  z-index: 1150;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  place-items: center;
  background: rgba(10, 23, 44, 0.58);
  backdrop-filter: blur(7px);
}

.reservation-dialog {
  width: min(100%, 610px);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dce5f0;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(9, 20, 42, 0.3);
}

.reservation-dialog__header {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
}

.reservation-dialog__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.reservation-dialog__brand img {
  width: 42px;
  height: 42px;
}

.reservation-dialog__close {
  flex: 0 0 auto;
}

.reservation-form {
  padding: 30px;
}

.reservation-form__intro {
  margin-bottom: 27px;
}

.reservation-form__intro .eyebrow {
  margin-bottom: 10px;
}

.reservation-form__intro h2 {
  margin-bottom: 10px;
  font-size: 35px;
}

.reservation-form__intro p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reservation-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.reservation-platforms legend,
.reservation-email label {
  display: block;
  grid-column: 1/-1;
  width: 100%;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.reservation-platforms label {
  display: block;
  min-width: 0;
}

.reservation-platforms input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.reservation-platforms label > span {
  display: grid;
  min-height: 66px;
  grid-template-columns: 30px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.reservation-platforms label > span > i:first-child {
  color: var(--muted);
  font-size: 21px;
}

.reservation-platforms label > span > i:last-child {
  color: #fff;
  opacity: 0;
}

.reservation-platforms b {
  min-width: 0;
  font-size: 13px;
}

.reservation-platforms input:focus-visible + span {
  outline: 3px solid rgba(47, 114, 244, 0.26);
  outline-offset: 3px;
}

.reservation-platforms input:checked + span {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-color: #9dc3ff;
}

.reservation-platforms input:checked + span > i:first-child {
  color: var(--blue);
}

.reservation-platforms input:checked + span > i:last-child {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--blue);
  border-radius: 50%;
  opacity: 1;
}

.reservation-notify {
  display: grid;
  min-height: 54px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.reservation-notify input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.reservation-check {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: transparent;
  background: #fff;
  border: 1px solid #b8c5d5;
  border-radius: 5px;
}

.reservation-notify input:checked + .reservation-check {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.reservation-notify input:focus-visible + .reservation-check {
  outline: 3px solid rgba(47, 114, 244, 0.26);
  outline-offset: 3px;
}

.reservation-email {
  margin-top: 5px;
}

.reservation-email input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #cdd7e5;
  border-radius: 7px;
  outline: 0;
}

.reservation-email input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 114, 244, 0.13);
}

.reservation-company {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.reservation-privacy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 9px;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.reservation-privacy i {
  color: var(--mint);
  font-size: 16px;
}

.reservation-status {
  min-height: 20px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.reservation-status[data-type=error] {
  color: #c73535;
}

.reservation-submit {
  width: 100%;
  margin-top: 8px;
}

.reservation-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.reservation-success {
  padding: 44px 30px 38px;
  text-align: center;
}

.reservation-success__icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  place-items: center;
  color: #fff;
  background: var(--mint);
  border-radius: 50%;
  font-size: 30px;
}

.reservation-success .eyebrow {
  margin-bottom: 10px;
}

.reservation-success h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.reservation-success p {
  max-width: 450px;
  margin: 0 auto 25px;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
  .shell {
    width: min(100% - 48px, 1240px);
  }
  .site-nav {
    gap: 20px;
  }
  .site-nav__links {
    gap: 20px;
  }
  .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    gap: 44px;
  }
  .home-hero__visual {
    width: min(100%, 500px);
  }
  .account-showcase__frame,
  .card-feature__inner {
    gap: 58px;
  }
  .contact-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(510px, 1.25fr);
    gap: 54px;
  }
}
@media (max-width: 920px) {
  .site-nav__links {
    display: none;
  }
  .site-nav {
    grid-template-columns: 1fr auto;
  }
  .mobile-menu-button {
    display: inline-grid;
  }
  .home-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .home-hero__copy {
    max-width: 720px;
  }
  .home-hero__visual {
    width: min(100%, 560px);
    height: 610px;
    min-height: 0;
    justify-self: center;
  }
  .capability-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }
  .capability {
    min-height: 220px;
  }
  .control-grid article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .control-grid article:last-child {
    border-bottom: 0;
  }
  .capability__icon,
  .control-grid__icon {
    margin-bottom: 34px;
  }
  .account-showcase__frame,
  .card-feature__inner,
  .security-layout,
  .card-journey__inner,
  .mission-layout,
  .download-trust__layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .account-showcase__copy,
  .card-feature__copy,
  .section-heading--compact {
    max-width: 700px;
  }
  .card-feature__visual {
    max-width: 700px;
    margin-inline: auto;
  }
  .card-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
  }
  .card-hero__copy {
    max-width: 720px;
  }
  .card-hero__visual {
    width: min(86%, 680px);
    margin-inline: auto;
  }
  .about-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about-hero__visual {
    min-height: 340px;
  }
  .mission-layout {
    gap: 38px;
  }
  .beta-layout {
    gap: 55px;
  }
  .contact-copy {
    max-width: 720px;
  }
  .contact-panel {
    width: min(100%, 720px);
  }
  .consent-banner__content {
    grid-template-columns: 1fr;
  }
  .consent-banner__actions {
    justify-content: flex-end;
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 36px, 1240px);
  }
  .section {
    padding: 78px 0;
  }
  .site-header,
  .site-nav {
    height: 66px;
  }
  .mobile-navigation {
    top: 66px;
    max-height: calc(100svh - 66px);
    overflow-y: auto;
  }
  .site-brand img {
    width: 35px;
    height: 35px;
  }
  .site-brand {
    font-size: 17px;
  }
  .site-nav__actions .button--small {
    display: none;
  }
  .language-control__button {
    min-height: 40px;
    padding-inline: 10px;
  }
  .language-control__button [data-language-label],
  .language-control__caret {
    display: none;
  }
  .language-control__menu {
    right: -48px;
  }
  .home-hero__inner {
    gap: 22px;
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .home-hero h1 {
    font-size: 52px;
  }
  .display-copy {
    font-size: 29px;
  }
  .lead-copy {
    max-width: 480px;
    font-size: 15px;
  }
  .home-hero__visual {
    width: min(100%, 410px);
    height: min(160vw, 630px);
    min-height: 500px;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading h2,
  .card-feature__copy h2,
  .account-showcase__copy h2 {
    font-size: 35px;
  }
  .section-heading p,
  .card-feature__copy > p,
  .account-showcase__copy > p {
    font-size: 15px;
  }
  .capability,
  .control-grid article {
    padding: 27px 20px;
  }
  .account-showcase,
  .card-feature,
  .card-journey,
  .principles-section {
    padding: 78px 0;
  }
  .account-showcase {
    padding: 18px 0 78px;
  }
  .account-showcase__frame {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 40px 24px;
  }
  .card-feature__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .card-feature__visual {
    order: 2;
    padding: 48px 4px;
  }
  .card-feature__copy {
    order: 1;
  }
  .card-feature__points span {
    min-height: 58px;
  }
  .security-layout {
    gap: 42px;
  }
  .closing-callout {
    padding: 54px 0;
  }
  .closing-callout__inner {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }
  .closing-callout__inner > img {
    width: 52px;
    height: 52px;
  }
  .closing-callout h2 {
    font-size: 23px;
  }
  .closing-callout .button {
    grid-column: 1/-1;
    width: 100%;
  }
  .card-hero__inner {
    padding-top: 58px;
    padding-bottom: 48px;
  }
  .card-hero h1 {
    font-size: 44px;
  }
  .card-hero__copy > p {
    font-size: 15px;
  }
  .card-hero__visual {
    width: 100%;
    padding: 52px 6px;
  }
  .service-rail .shell,
  .release-summary .shell {
    grid-template-columns: 1fr;
  }
  .service-rail span,
  .service-rail span:first-child,
  .service-rail span:last-child,
  .release-summary span,
  .release-summary span:first-child,
  .release-summary span:last-child {
    min-height: 82px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-rail span:last-child,
  .release-summary span:last-child {
    border-bottom: 0;
  }
  .card-journey__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .availability-note__inner {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .availability-note__inner > i {
    width: 44px;
    height: 44px;
  }
  .availability-note .text-link {
    grid-column: 1/-1;
  }
  .about-hero__inner {
    padding-top: 58px;
    padding-bottom: 68px;
    gap: 45px;
  }
  .about-hero h1 {
    font-size: 45px;
  }
  .about-hero__copy > p {
    font-size: 15px;
  }
  .about-hero__visual {
    min-height: 280px;
  }
  .about-mark img {
    width: 88px;
    height: 88px;
  }
  .mission-layout {
    grid-template-columns: 1fr;
  }
  .mission-layout h2 {
    font-size: 37px;
  }
  .mission-layout .mission-lead {
    font-size: 19px;
  }
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .principle-grid article {
    min-height: 205px;
    padding: 26px 20px;
  }
  .principle-grid article > span {
    margin-bottom: 35px;
  }
  .beta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .beta-visual img {
    max-height: 500px;
  }
  .download-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 52px;
  }
  .download-hero h1 {
    font-size: 52px;
  }
  .download-hero__copy > p {
    font-size: 16px;
  }
  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button--download {
    width: 100%;
    min-width: 0;
  }
  .download-hero__visual {
    width: min(76vw, 320px);
  }
  .download-trust__layout {
    gap: 42px;
  }
  .ios-install__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .ios-install__steps li {
    min-height: 96px;
    grid-template-columns: 34px 36px minmax(0, 1fr);
    gap: 13px;
  }
  .ios-install__steps li > i {
    font-size: 21px;
  }
  .download-support__inner {
    grid-template-columns: 46px 1fr;
    gap: 16px;
  }
  .download-support__inner > i {
    width: 46px;
    height: 46px;
  }
  .download-support .button {
    grid-column: 1/-1;
    width: 100%;
  }
  .contact-hero {
    padding: 64px 0 72px;
  }
  .contact-hero h1 {
    font-size: 50px;
  }
  .contact-hero p {
    font-size: 15px;
  }
  .contact-main {
    padding: 72px 0 80px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-panel {
    padding: 25px 20px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-field,
  .contact-field--wide,
  .form-status,
  .contact-submit {
    grid-column: 1;
  }
  .support-values .shell {
    grid-template-columns: 1fr;
  }
  .support-values article,
  .support-values article:first-child,
  .support-values article:last-child {
    min-height: 176px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .support-values article:last-child {
    border-bottom: 0;
  }
  .support-values i {
    margin-bottom: 24px;
  }
  .legal-hero {
    padding: 62px 0 54px;
  }
  .legal-hero h1 {
    font-size: 43px;
  }
  .legal-document {
    padding-top: 52px;
    padding-bottom: 80px;
  }
  .legal-document h2 {
    font-size: 21px;
  }
  .legal-document p {
    font-size: 14px;
  }
  .site-footer {
    padding-top: 58px;
  }
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
  }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
  .consent-banner__content {
    gap: 18px;
    padding: 18px;
  }
  .consent-banner__copy {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }
  .consent-banner__icon {
    width: 38px;
    height: 38px;
  }
  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .consent-banner__actions .consent-button--primary {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .consent-overlay {
    padding: 12px;
  }
  .consent-dialog {
    max-height: calc(100svh - 24px);
  }
  .consent-dialog__header {
    padding: 23px 20px;
  }
  .consent-dialog__header h2 {
    font-size: 25px;
  }
  .consent-dialog__form {
    padding: 0 20px 20px;
  }
  .consent-category {
    gap: 16px;
    padding: 21px 0;
  }
  .consent-dialog__actions {
    grid-template-columns: 1fr;
  }
  .reservation-overlay {
    padding: 12px;
  }
  .reservation-dialog {
    max-height: calc(100svh - 24px);
  }
  .reservation-form {
    padding: 25px 20px;
  }
  .reservation-form__intro h2 {
    font-size: 29px;
  }
  .reservation-success {
    padding: 38px 20px 30px;
  }
}
@media (max-width: 410px) {
  .shell {
    width: min(100% - 28px, 1240px);
  }
  .home-hero h1 {
    font-size: 50px;
  }
  .display-copy {
    font-size: 28px;
  }
  .about-hero h1 {
    font-size: 40px;
  }
  .home-hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-hero .button {
    width: 100%;
  }
  .card-hero .button-row {
    display: grid;
  }
  .card-hero .button {
    width: 100%;
  }
  .button--download {
    min-width: 0;
    width: 100%;
  }
  .contact-panel__heading h2,
  .contact-success h2 {
    font-size: 24px;
  }
  .consent-banner__actions {
    grid-template-columns: 1fr;
  }
  .consent-banner__actions .consent-button--primary {
    grid-column: 1;
  }
  .launch-announcement {
    grid-template-columns: 34px auto;
  }
  .launch-announcement__icon {
    width: 34px;
    height: 34px;
  }
  .reservation-platforms {
    grid-template-columns: 1fr;
  }
}
@media (orientation: landscape) and (max-height: 620px) and (max-width: 960px) {
  .site-header,
  .site-nav {
    height: 60px;
  }
  .mobile-navigation {
    top: 60px;
    max-height: calc(100svh - 60px);
  }
  .home-hero__inner {
    grid-template-columns: 1fr 0.72fr;
    gap: 28px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .home-hero__copy {
    max-width: none;
    padding: 0;
  }
  .home-hero h1 {
    font-size: 46px;
  }
  .display-copy {
    font-size: 25px;
  }
  .lead-copy {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.55;
  }
  .home-hero__visual {
    width: min(100%, 290px);
    height: calc(100svh - 108px);
    min-height: 360px;
  }
  .card-hero__inner {
    grid-template-columns: 1fr 0.85fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .card-hero h1 {
    font-size: 38px;
  }
  .card-hero__copy > p {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .card-hero__visual {
    padding: 28px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}