/* Onest, sage and category accents shared with the web and mobile apps. */
:root {
  color-scheme: light;
  --paper: #fff;
  --card: #fff;
  --surface: #f4f4f2;
  --ink: #1f1e1c;
  --sub: #625f59;
  --line: #e5e5df;
  --sage: #7e9178;
  --sage-deep: #526e55;
  --sage-wash: #eaf0e7;
  --lavender: #eee8f6;
  --butter: #f6dfa0;
  --butter-ink: #594521;
  --glass: #ffffffed;
  --map-base: #efede5;
  --map-block: #e5e2d7;
  --map-road: #fffdf6;
  --map-water: #bdd9df;
  --map-park: #d3dfc5;
  --shadow: 0 18px 50px #1f1e1c0c;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    'Onest',
    system-ui,
    -apple-system,
    sans-serif;
  font-synthesis: none;
}
:root[data-tone='linen'] {
  --paper: #f4f1e8;
  --card: #fffcf5;
  --surface: #eae5d9;
  --line: #dad3c4;
  --glass: #f4f1e8ed;
}
:root[data-tone='dark'] {
  color-scheme: dark;
  --paper: #191b19;
  --card: #242824;
  --surface: #202520;
  --ink: #f2f1e9;
  --sub: #b9bfb4;
  --line: #3c443b;
  --sage: #a2b596;
  --sage-deep: #b1c6a5;
  --sage-wash: #2c3a2c;
  --lavender: #302b3b;
  --butter: #d8bc77;
  --glass: #191b19ed;
  --map-base: #30382f;
  --map-block: #3c4539;
  --map-road: #535d4e;
  --map-water: #344e55;
  --map-park: #46573b;
  --shadow: 0 18px 50px #0002;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex='0']:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.06;
  text-wrap: balance;
}
h2 {
  font-size: clamp(36px, 4.3vw, 60px);
}
h3 {
  font-size: 30px;
  letter-spacing: -0.035em;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
}
.skip:focus {
  top: 12px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--glass);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 31px;
  font-weight: 750;
  letter-spacing: -1.2px;
  flex-shrink: 0;
}
.logo > span > span {
  color: var(--sage);
}
.logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-inline: auto;
  font-size: 13px;
  font-weight: 500;
}
.nav-links a {
  padding-block: 14px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sage-deep);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.icon-button:hover {
  background: var(--surface);
}
.nav-login {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 650;
}
.nav-login svg {
  width: 18px;
}
.menu-button {
  display: none;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.6;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  padding-top: 68px;
  padding-bottom: 72px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(44px, 5.05vw, 74px);
  margin-top: 25px;
  letter-spacing: -0.065em;
  line-height: 1.06;
}
.hero h1 > span {
  color: var(--sage-deep);
}
.hero-lead {
  max-width: 380px;
  font-size: 18px;
  line-height: 1.65;
  margin-top: 26px;
  color: var(--sub);
}
.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
}
.button {
  min-height: 56px;
  padding: 16px 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 600;
  font-size: 14px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  text-align: center;
}
.button svg,
.text-link svg {
  width: 19px;
  transition: transform 0.25s var(--ease);
}
.button:hover svg,
.text-link:hover svg,
.nav-login:hover svg {
  transform: translateX(4px);
}
.primary {
  color: #fff;
  background: #231f1a;
}
.primary:hover {
  background: #3e4435;
  box-shadow: 0 5px 15px #1f1e1c15;
}
[data-tone='dark'] .primary {
  color: #20241d;
  background: #dce6d5;
}
[data-tone='dark'] .primary:hover {
  background: #c1d0b7;
}
.secondary {
  border-color: var(--line);
  background: var(--card);
}
.secondary:hover {
  background: var(--surface);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
}
.text-link:hover {
  color: var(--sage-deep);
}
.small-note {
  font-size: 11px;
  color: var(--sub);
  margin-top: 26px;
}
.hero-collage {
  min-width: 0;
  position: relative;
  height: 555px;
  isolation: isolate;
}
.hero-orbit {
  position: absolute;
  inset: 50px 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.postcard {
  position: absolute;
  inset: 10px 22px 35px 48px;
  overflow: hidden;
  border-radius: 160px 160px 30px 30px;
  transform: rotate(5deg);
  background: var(--sage-wash);
}
.postcard:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, #0c221448 50%, #0c2214d9);
}
.postcard > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.photo-caption {
  position: absolute;
  left: 34px;
  right: 24px;
  bottom: 34px;
  color: #fff;
  z-index: 1;
}
.photo-caption > span {
  display: block;
  font-size: 11px;
}
.photo-caption > strong {
  display: block;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 12px 0 16px;
  font-weight: 600;
}
.round-stamp {
  position: absolute;
  right: -4px;
  top: 0;
  width: 115px;
  height: 115px;
  background: var(--butter);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--butter-ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
  transform: rotate(13deg);
  box-shadow:
    inset 0 0 0 7px var(--butter),
    inset 0 0 0 8px #59452140;
}
.round-stamp svg {
  width: 24px;
  margin-bottom: 5px;
}
.saved-note {
  position: absolute;
  left: 0;
  top: 120px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 19px 19px 19px 4px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 17px;
  transform: rotate(-7deg);
}
.saved-note b {
  display: block;
  font-size: 13px;
}
.saved-note div > span {
  display: block;
  color: var(--sub);
  font-size: 10px;
  margin-top: 3px;
}
.saved-icon {
  display: grid;
  place-items: center;
  color: #fff;
  background: #5e7a60;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
.saved-icon svg {
  width: 17px;
  fill: currentColor;
}
.mini-ticket {
  position: absolute;
  right: -3px;
  bottom: 7px;
  padding: 18px 22px;
  width: 252px;
  color: #363045;
  background: #eee8f6;
  border-radius: 18px 18px 4px 18px;
  transform: rotate(-6deg);
  box-shadow: var(--shadow);
}
.ticket-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mini-ticket b {
  font-size: 14px;
  display: block;
  margin-top: 12px;
}
.mini-ticket > span:last-child {
  font-size: 10px;
}
.ticket-path {
  display: flex;
  align-items: center;
  margin-top: 18px;
}
.ticket-path i {
  width: 10px;
  height: 10px;
  background: #8b5fd6;
  border-radius: 50%;
}
.ticket-path i:nth-of-type(2) {
  background: #4e9d6b;
}
.ticket-path i:nth-of-type(3) {
  background: #c25a2c;
}
.ticket-path span {
  flex: 1;
  border-bottom: 1.5px dashed #9890a4;
}
.intro-strip {
  border-block: 1px solid var(--line);
  padding-block: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.intro-strip > span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--sub);
}
.intro-strip > a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.intro-strip > a svg {
  color: var(--sage-deep);
}
.section {
  padding-block: 108px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}
.section-heading .eyebrow {
  margin-bottom: 19px;
  color: var(--sub);
}
.section-heading > p,
.section-heading > div:last-child:not(:first-child) {
  max-width: 355px;
  color: var(--sub);
  font-size: 15px;
  line-height: 1.7;
}
.section-heading .text-link {
  margin-top: 14px;
  color: var(--ink);
}
.planner {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.planner-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.planner-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.planner-title svg {
  color: var(--sage-deep);
}
.demo-label {
  font-size: 11px;
  color: var(--sub);
}
.planner-body {
  display: grid;
  grid-template-columns: 380px 1fr;
}
.day-plan {
  padding: 25px 28px 20px;
  min-width: 0;
}
.day-tabs {
  display: flex;
  gap: 5px;
  background: var(--surface);
  padding: 5px;
  border-radius: 14px;
}
.day-tabs button {
  flex: 1;
  background: transparent;
  border: 0;
  border-radius: 10px;
  min-height: 40px;
  padding: 5px;
  font-size: 12px;
  white-space: nowrap;
}
.day-tabs button[aria-selected='true'] {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 2px 4px #0001;
}
.day-caption {
  font-size: 11px;
  color: var(--sub);
  margin: 25px 0 8px;
}
.day-plan h3 {
  font-size: 27px;
  line-height: 1.15;
  min-height: 64px;
}
.itinerary {
  padding: 0;
  margin: 25px 0;
  list-style: none;
  position: relative;
  display: grid;
  gap: 23px;
}
.itinerary:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  border-left: 1px dashed var(--line);
}
.itinerary li {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.stop-dot {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-size: 12px;
  border: 3px solid var(--card);
}
.culture {
  background: #8b5fd6;
}
.food {
  background: #b34f24;
}
.nature {
  background: #3f8658;
}
.itinerary small {
  display: block;
  font-size: 10px;
  color: var(--sub);
}
.itinerary b {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 3px;
}
.day-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  color: var(--sub);
}
.day-bottom .live-dot {
  width: 5px;
  height: 5px;
  margin-right: 4px;
}
.demo-map {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: var(--map-base);
}
.map-art {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  stroke: none;
}
.map-point circle {
  stroke: #fff;
  stroke-width: 4;
}
.map-point text {
  fill: #fff;
  font:
    600 13px 'Onest',
    sans-serif;
  text-anchor: middle;
}
.map-label {
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--sub);
}
.label-city {
  top: 14%;
  left: 14%;
  text-transform: uppercase;
  font-size: 10px;
}
.label-water {
  left: 50%;
  bottom: 22%;
  transform: rotate(-22deg);
  font-size: 11px;
}
.map-place {
  position: absolute;
  left: 25%;
  top: 30%;
  width: 155px;
  background: var(--card);
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 12px 30px #0002;
  transform: rotate(-5deg);
}
.map-place > img {
  width: 100%;
  height: 83px;
  object-fit: cover;
  border-radius: 9px;
}
.map-place > span {
  display: block;
  padding: 7px 5px;
}
.map-place small {
  font-size: 8px;
  display: block;
  color: var(--sub);
}
.map-place b {
  font-size: 11px;
}
.map-key {
  position: absolute;
  bottom: 15px;
  right: 18px;
  color: var(--ink);
  background: var(--glass);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 9px;
}
.demo-map.changed .map-route {
  animation: trace 0.8s var(--ease) both;
}
.demo-map.changed .map-place {
  animation: place-in 0.6s var(--ease) both;
}
@keyframes trace {
  from {
    stroke-dashoffset: 64;
    opacity: 0.15;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes place-in {
  from {
    opacity: 0;
    transform: translateY(12px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-5deg);
  }
}
.under-planner {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 24px;
}
.under-planner > svg {
  color: var(--sage-deep);
}
.under-planner p {
  font-size: 16px;
  font-weight: 600;
}
.under-planner p > span {
  display: block;
  margin-top: 6px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}
.under-planner .text-link {
  margin-left: auto;
  flex-shrink: 0;
}
.community-section {
  padding-block: 90px 70px;
  background: var(--surface);
  border-radius: 48px 48px 0 0;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.destination {
  min-width: 0;
}
.destination-photo {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: var(--sage-wash);
}
.destination-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.destination:hover .destination-photo > img {
  transform: scale(1.045);
}
.dest-one .destination-photo {
  border-radius: 100px 24px 24px 24px;
}
.dest-two .destination-photo {
  border-radius: 24px 24px 110px 24px;
}
.dest-three .destination-photo {
  border-radius: 24px 100px 24px 24px;
}
.dest-two {
  padding-top: 40px;
}
.dest-three {
  padding-top: 15px;
}
.dest-three img {
  object-position: 35% 50%;
}
.destination-chip {
  position: absolute;
  left: 16px;
  bottom: 18px;
  padding: 7px 11px;
  background: #fffffff0;
  color: #343e31;
  font-size: 10px;
  border-radius: 30px;
  backdrop-filter: blur(12px);
}
.circle-arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  right: 16px;
  bottom: 16px;
  color: #fff;
  border: 1px solid #ffffffb0;
  border-radius: 50%;
  background: #2224;
  backdrop-filter: blur(12px);
}
.circle-arrow svg {
  width: 18px;
  transform: rotate(-35deg);
  transition: transform 0.3s;
}
.destination:hover .circle-arrow svg {
  transform: rotate(0);
}
.destination-copy {
  padding-top: 20px;
}
.destination-copy small {
  font-size: 10px;
  color: var(--sub);
}
.destination-copy h3 {
  margin-top: 8px;
  font-size: 29px;
  line-height: 1.15;
}
.community-footnote {
  font-size: 11px;
  color: var(--sub);
  margin-top: 35px;
}
.essentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature {
  border-radius: 30px;
  padding: 36px;
  overflow: hidden;
  min-width: 0;
}
.feature-copy > h3 {
  margin: 18px 0 14px;
  font-size: 34px;
}
.feature-copy > p {
  color: var(--sub);
  font-size: 14px;
  max-width: 345px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 14px;
}
.feature-icon > span {
  font-size: 21px;
}
.feature-docs {
  background: var(--lavender);
}
.feature-budget {
  color: #f7f7ed;
  background: #262e28;
}
.feature-budget .feature-copy > p {
  color: #c4ccbd;
}
.boarding-pass {
  background: var(--card);
  margin: 37px 5px 12px;
  border-radius: 18px;
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
  padding: 22px;
}
.boarding-pass .ticket-label {
  color: var(--sub);
  font-size: 9px;
}
.boarding-pass .ticket-label svg {
  color: var(--sage-deep);
  width: 17px;
}
.flight-cities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 23px;
}
.flight-cities b {
  display: block;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.flight-cities div > span {
  font-size: 10px;
  color: var(--sub);
}
.flight-cities > div:last-child {
  text-align: right;
}
.flight-line {
  border-bottom: 1px dashed var(--line);
  flex: 1;
  margin: 0 18px;
  text-align: center;
  color: var(--sage-deep);
}
.boarding-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 9px;
  color: var(--sub);
  align-items: center;
}
.boarding-bottom b {
  display: block;
  font-size: 14px;
  color: var(--ink);
}
.file-tag {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--surface);
}
.expense-demo {
  margin-top: 28px;
}
.expense-demo > span {
  font-size: 10px;
  color: #c4ccbd;
}
.expense-total {
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin: 10px 0 18px;
  font-weight: 600;
}
.expense-total small {
  font-size: 28px;
  color: #b0c3a7;
}
.expense-bar {
  display: flex;
  height: 16px;
  gap: 4px;
}
.expense-bar i {
  width: 50%;
  border-radius: 4px;
  background: #eebe4c;
}
.expense-bar i:nth-child(2) {
  width: 30%;
  background: #db9168;
}
.expense-bar i:nth-child(3) {
  width: 20%;
  background: #b499e2;
}
.expense-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 9px;
  margin: 14px 0 24px;
  color: #dbe0d6;
}
.expense-legend i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #eebe4c;
  border-radius: 50%;
  margin-right: 4px;
}
.expense-legend > span:nth-child(2) i {
  background: #db9168;
}
.expense-legend > span:nth-child(3) i {
  background: #b499e2;
}
.expense-settle {
  border-top: 1px solid #ffffff24;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 16px;
  font-size: 11px;
}
.expense-settle b {
  margin-left: 8px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #262e28;
  background: #c8d7bd;
  color: #30372c;
  display: grid;
  place-items: center;
  font-style: normal;
  margin-right: -8px;
}
.avatar-stack i:nth-child(2) {
  background: #e7cef0;
}
.avatar-stack i:last-child {
  background: #e9d49c;
  margin-right: 0;
}
.together-note {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.together-note h3 {
  font-size: 19px;
  letter-spacing: -0.025em;
}
.together-note p {
  font-size: 12px;
  color: var(--sub);
  margin-top: 8px;
}
.together-note .text-link {
  margin-left: auto;
  flex-shrink: 0;
}
.overlap-people {
  display: flex;
  flex-shrink: 0;
}
.overlap-people i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 48px;
  font-size: 20px;
  font-weight: 650;
  font-style: normal;
  border-radius: 20px 20px 10px 10px;
  background: var(--lavender);
  transform: rotate(-9deg);
}
.overlap-people i + i {
  background: var(--butter);
  color: var(--butter-ink);
  transform: rotate(9deg);
  margin-left: -6px;
}
.device-section {
  background: var(--sage-wash);
  border-radius: 42px 42px 110px 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.device-copy {
  padding: 65px 0 65px 65px;
}
.device-copy .eyebrow {
  color: var(--sage-deep);
  margin-bottom: 23px;
}
.device-copy h2 {
  font-size: clamp(36px, 3.6vw, 51px);
}
.device-copy > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--sub);
  font-size: 14px;
  margin-top: 24px;
}
.device-copy .button {
  margin-top: 28px;
}
.device-note {
  display: block;
  color: var(--sub);
  font-size: 10px;
  margin-top: 12px;
}
.phone-scene {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  padding-top: 56px;
}
.phone {
  width: 258px;
  background: var(--card);
  border: 6px solid #343c32;
  border-radius: 39px;
  box-shadow: 15px 18px 0 #53674717;
  overflow: hidden;
  transform: rotate(9deg) translateY(20px);
  position: relative;
}
.phone-camera {
  position: absolute;
  top: 9px;
  left: calc(50% - 30px);
  width: 60px;
  height: 17px;
  border-radius: 15px;
  background: #242a21;
  z-index: 2;
}
.phone-photo {
  height: 230px;
  position: relative;
  padding: 110px 20px 20px;
  color: #fff;
  background: #274d36;
}
.phone-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.phone-photo > span,
.phone-photo > b {
  position: relative;
}
.phone-photo > span {
  display: block;
  font-size: 9px;
}
.phone-photo > b {
  display: block;
  font-size: 25px;
  line-height: 1.12;
  margin-top: 10px;
  letter-spacing: -0.04em;
}
.phone-content {
  padding: 20px 15px 0;
}
.phone-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 13px;
}
.phone-progress i {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 3px;
}
.phone-progress i:first-child {
  background: var(--sage);
}
.phone-progress i:nth-child(2) {
  background: #d4568b;
}
.phone-content > small {
  font-size: 9px;
  color: var(--sub);
}
.phone-content h3 {
  margin: 5px 0 17px;
  font-size: 19px;
  letter-spacing: -0.035em;
}
.phone-stop {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.phone-stop b {
  font-size: 11px;
  display: block;
}
.phone-stop small {
  font-size: 8px;
  display: block;
  color: var(--sub);
}
.phone-stop svg {
  width: 14px;
}
.phone-bottom {
  display: flex;
  justify-content: space-between;
  padding: 14px 9px;
  border-top: 1px solid var(--line);
  color: var(--sub);
}
.phone-bottom svg {
  width: 17px;
}
.phone-bottom > span {
  color: var(--sage-deep);
}
.device-sticker {
  position: absolute;
  top: 28px;
  right: 27px;
  color: #363045;
  background: #eee8f6;
  font-size: 12px;
  line-height: 1.5;
  padding: 16px 20px;
  border-radius: 16px 16px 16px 3px;
  transform: rotate(-9deg);
  z-index: 3;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-grid > article {
  padding: 40px;
  border-radius: 30px;
}
.free-plan {
  border: 1px solid var(--line);
  background: var(--card);
}
.pricing-grid h3 {
  margin-top: 18px;
  font-size: 36px;
}
.plan-price {
  margin-top: 24px;
  color: var(--sage-deep);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
  font-size: 13px;
}
.check-list li {
  position: relative;
  padding-left: 24px;
}
.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-deep);
}
.free-plan .button {
  margin-top: 29px;
}
.atlas-plan {
  position: relative;
  background: var(--butter);
  color: #362c18;
  border-radius: 30px 30px 70px 30px !important;
}
.atlas-plan .eyebrow {
  color: #594521;
}
.atlas-intro {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 22px;
  letter-spacing: -0.025em;
}
.atlas-plan .check-list li:before {
  color: #594521;
}
.atlas-plan .primary {
  background: #231f1a;
  color: #fff;
}
.atlas-plan .primary:hover {
  background: #484029;
}
.plan-note {
  font-size: 10px;
  margin-top: 14px;
  color: #594521;
}
.pinwheel {
  position: absolute;
  right: 20px;
  top: 23px;
  width: 94px;
  height: 94px;
}
.pinwheel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pinwheel .pinwheel-rose {
  inset: auto;
  width: 60.16%;
  height: 59.57%;
  left: 25.587488%;
  top: 8.986893%;
  transition: transform 1.6s var(--ease);
  transform-origin: 50.32% 49.51%;
}
.atlas-plan:hover .pinwheel-rose {
  transform: rotate(360deg);
}
.pinwheel-hub {
  pointer-events: none;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
  padding-bottom: 100px;
}
.faq .eyebrow {
  color: var(--sub);
  margin-bottom: 20px;
}
.faq h2 {
  font-size: 42px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  min-height: 72px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 22px;
  color: var(--sage-deep);
  transition: transform 0.25s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  padding: 0 30px 24px 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--sub);
}
.final-section {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 77px 30px;
  background: var(--lavender);
  border-radius: 90px 30px 90px 30px;
  overflow: hidden;
}
.final-section .eyebrow {
  justify-content: center;
}
.final-section h2 {
  font-size: clamp(38px, 5vw, 67px);
  margin-top: 23px;
}
.final-section p:not(.eyebrow) {
  color: var(--sub);
  font-size: 16px;
  margin-top: 22px;
}
.final-section .button {
  margin-top: 30px;
}
.final-orbit {
  position: absolute;
  top: -65%;
  left: -17%;
  width: 56%;
  height: 165%;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -1;
  transform: rotate(32deg);
}
.final-spark {
  position: absolute;
  right: 8%;
  bottom: 18%;
  color: var(--sage-deep);
  transform: rotate(10deg);
}
.final-spark svg {
  width: 78px;
  height: 78px;
  stroke-width: 0.9;
}
.footer {
  padding-block: 55px 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-top > p {
  font-size: 12px;
  color: var(--sub);
}
.footer-top .text-link {
  margin-left: auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 28px;
  font-size: 11px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--sub);
}
.footer-links > span {
  margin-right: auto;
}
.footer-links > a {
  padding-block: 8px;
}
.footer a:hover {
  color: var(--sage-deep);
}
.requisites {
  font-size: 10px;
  color: var(--sub);
  margin-top: 12px;
}
.requisites summary {
  cursor: pointer;
  padding-block: 10px;
  width: fit-content;
}
.requisites p {
  margin-top: 8px;
  line-height: 1.9;
}
/* Enhancement only: without JS and with reduced motion, content stays visible. */
.reveal.is-waiting {
  opacity: 0;
  transform: translateY(22px);
}
.reveal {
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-in 0.8s var(--ease) both;
  }
  .hero-collage {
    animation: hero-in 1s 0.1s var(--ease) both;
  }
  .saved-note {
    animation: note-in 1s 0.25s var(--ease) both;
  }
  @keyframes hero-in {
    from {
      opacity: 0;
      translate: 0 18px;
    }
    to {
      opacity: 1;
      translate: 0 0;
    }
  }
  @keyframes note-in {
    from {
      opacity: 0;
      transform: translateX(-15px) rotate(-11deg);
    }
    to {
      opacity: 1;
      transform: translateX(0) rotate(-7deg);
    }
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-inner {
    gap: 20px;
  }
  .nav-links {
    gap: 16px;
    font-size: 12px;
  }
  .nav-actions {
    gap: 12px;
  }
  .hero {
    gap: 20px;
    padding-top: 48px;
  }
  .hero-collage {
    height: 490px;
  }
  .postcard {
    inset: 15px 12px 25px 30px;
  }
  .saved-note {
    top: 105px;
    padding: 11px;
  }
  .saved-note b {
    font-size: 11px;
  }
  .mini-ticket {
    width: 225px;
  }
  .round-stamp {
    width: 98px;
    height: 98px;
    font-size: 11px;
  }
  .section {
    padding-block: 85px;
  }
  .planner-body {
    grid-template-columns: 340px 1fr;
  }
  .day-plan {
    padding: 22px;
  }
  .destination-photo {
    height: 285px;
  }
  .destination-grid {
    gap: 20px;
  }
  .destination-chip {
    font-size: 8px;
    left: 12px;
  }
  .circle-arrow {
    width: 33px;
    height: 33px;
    right: 12px;
  }
  .destination-copy h3 {
    font-size: 25px;
  }
  .feature {
    padding: 28px;
  }
  .together-note {
    gap: 18px;
    flex-wrap: wrap;
  }
  .together-note .text-link {
    margin-left: 90px;
  }
  .device-copy {
    padding-left: 38px;
  }
  .phone-scene {
    min-height: 570px;
  }
  .pricing-grid > article {
    padding: 32px;
  }
  .pinwheel {
    width: 76px;
    height: 76px;
  }
  .faq {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .nav-inner {
    min-height: 74px;
  }
  .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: none;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px 32px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-links a {
    font-size: 15px;
  }
  .menu-button {
    display: grid;
  }
  .nav-actions {
    margin-left: auto;
  }
  .nav-login {
    margin-inline: 4px;
  }
  .hero {
    gap: 10px;
    padding-top: 36px;
    padding-bottom: 45px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero .eyebrow {
    font-size: 9px;
    max-width: 260px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero .button {
    padding-inline: 17px;
    gap: 12px;
    font-size: 12px;
  }
  .hero .text-link {
    font-size: 11px;
  }
  .small-note {
    font-size: 10px;
  }
  .hero-collage {
    height: 460px;
  }
  .saved-note {
    left: -8px;
    top: 116px;
  }
  .saved-note div > span {
    font-size: 8px;
  }
  .saved-icon {
    width: 27px;
    height: 27px;
  }
  .postcard {
    inset: 22px 0 33px 10px;
  }
  .photo-caption {
    left: 20px;
    bottom: 55px;
  }
  .photo-caption > strong {
    font-size: 34px;
  }
  .photo-caption > span {
    font-size: 9px;
  }
  .mini-ticket {
    width: 206px;
    padding: 16px;
  }
  .mini-ticket b {
    font-size: 12px;
  }
  .intro-strip {
    gap: 18px;
    flex-wrap: wrap;
  }
  .intro-strip > span {
    flex: 0 0 100%;
    font-size: 12px;
  }
  .intro-strip > span br {
    display: none;
  }
  .intro-strip > a {
    font-size: 12px;
    gap: 8px;
  }
  .section-heading {
    gap: 28px;
  }
  .section-heading > p,
  .section-heading > div:last-child:not(:first-child) {
    max-width: 290px;
    font-size: 13px;
  }
  .planner-body {
    grid-template-columns: 310px 1fr;
  }
  .planner-top {
    padding: 18px 22px;
  }
  .planner-title {
    font-size: 12px;
  }
  .demo-label {
    font-size: 9px;
  }
  .map-place {
    width: 130px;
    left: 12%;
  }
  .map-place > img {
    height: 68px;
  }
  .map-key {
    max-width: calc(100% - 24px);
    font-size: 8px;
    right: 12px;
  }
  .under-planner {
    flex-wrap: wrap;
  }
  .under-planner p {
    flex: 1;
  }
  .under-planner .text-link {
    margin-left: 39px;
  }
  .destination-grid {
    gap: 16px;
  }
  .destination-photo {
    height: 255px;
  }
  .destination-copy h3 {
    font-size: 22px;
  }
  .destination-chip {
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
  .circle-arrow {
    bottom: 52px;
  }
  .destination-copy small {
    font-size: 9px;
  }
  .dest-one .destination-photo {
    border-top-left-radius: 60px;
  }
  .dest-three .destination-photo {
    border-top-right-radius: 60px;
  }
  .feature {
    padding: 24px;
  }
  .feature-copy > h3 {
    font-size: 29px;
  }
  .feature-copy > p {
    font-size: 12px;
  }
  .boarding-pass {
    padding: 18px;
    margin-inline: 0;
  }
  .flight-cities b {
    font-size: 28px;
  }
  .flight-line {
    margin-inline: 10px;
  }
  .expense-total {
    font-size: 48px;
  }
  .expense-legend {
    gap: 8px;
  }
  .expense-settle {
    gap: 10px;
  }
  .expense-settle b {
    display: block;
    margin-left: 0;
  }
  .device-section {
    border-radius: 32px 32px 70px 32px;
  }
  .device-copy {
    padding: 35px 0 35px 30px;
  }
  .device-copy h2 {
    font-size: 37px;
  }
  .device-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .phone {
    width: 230px;
  }
  .phone-scene {
    min-height: 570px;
  }
  .device-sticker {
    top: 25px;
    right: 16px;
    font-size: 10px;
  }
  .pricing-grid > article {
    padding: 28px;
  }
  .pricing-grid .eyebrow {
    font-size: 9px;
  }
  .pricing-grid h3 {
    font-size: 29px;
  }
  .atlas-intro {
    font-size: 16px;
  }
  .pinwheel {
    width: 62px;
    height: 62px;
    right: 8px;
    top: 40px;
  }
  .check-list {
    font-size: 12px;
  }
  .free-plan .button {
    margin-top: 23px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq h2 {
    font-size: 38px;
  }
  .final-spark {
    right: 5%;
    bottom: 12%;
  }
  .final-spark svg {
    width: 45px;
    height: 45px;
  }
  .footer-top {
    gap: 16px;
  }
  .footer-top > p {
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-inner {
    min-height: 68px;
    gap: 12px;
  }
  .logo {
    font-size: 27px;
    gap: 7px;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-login {
    font-size: 12px;
    gap: 5px;
  }
  .nav-login svg {
    width: 15px;
  }
  .icon-button {
    width: 40px;
    height: 40px;
  }
  .icon-button svg {
    width: 19px;
  }
  .nav-links {
    padding-inline: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
    padding-bottom: 38px;
    gap: 26px;
  }
  .hero .eyebrow {
    max-width: none;
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(39px, 9.5vw, 57px);
    margin-top: 18px;
  }
  .hero-lead {
    font-size: 15px;
    max-width: 340px;
    margin-top: 20px;
  }
  .actions {
    margin-top: 24px;
    gap: 9px;
  }
  .hero .button {
    font-size: 13px;
    padding-inline: 22px;
    min-height: 54px;
  }
  .hero .text-link {
    font-size: 12px;
  }
  .small-note {
    margin-top: 11px;
    font-size: 10px;
  }
  .hero-collage {
    height: 440px;
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
  }
  .postcard {
    inset: 20px 22px 36px 26px;
    border-radius: 120px 120px 24px 24px;
    transform: rotate(4deg);
  }
  .round-stamp {
    right: 0;
    top: 0;
    width: 94px;
    height: 94px;
  }
  .saved-note {
    top: 91px;
    left: 0;
    padding: 11px 13px;
  }
  .saved-note b {
    font-size: 11px;
  }
  .saved-note div > span {
    font-size: 9px;
  }
  .mini-ticket {
    right: 0;
    bottom: 3px;
  }
  .photo-caption {
    bottom: 92px;
  }
  .photo-caption > strong {
    font-size: 36px;
  }
  .intro-strip {
    gap: 8px;
    padding-block: 20px;
  }
  .intro-strip > span {
    font-size: 11px;
    margin-bottom: 7px;
  }
  .intro-strip > a {
    flex: 1 1 100%;
    gap: 12px;
    font-size: 13px;
    min-height: 40px;
  }
  .intro-strip > a svg {
    width: 19px;
  }
  .section {
    padding-block: 64px;
  }
  h2 {
    font-size: 37px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 14px;
  }
  .section-heading > p,
  .section-heading > div:last-child:not(:first-child) {
    max-width: 100%;
    font-size: 13px;
  }
  .planner {
    border-radius: 21px;
  }
  .planner-top {
    padding: 18px;
    flex-wrap: wrap;
    gap: 5px;
  }
  .planner-title {
    font-size: 12px;
  }
  .planner-title svg {
    width: 18px;
  }
  .demo-label {
    padding-left: 28px;
    font-size: 10px;
  }
  .planner-body {
    grid-template-columns: 1fr;
  }
  .day-plan {
    padding: 20px;
  }
  .day-tabs button {
    min-height: 42px;
  }
  .day-caption {
    margin-top: 21px;
  }
  .day-plan h3 {
    font-size: 28px;
    min-height: 64px;
  }
  .itinerary {
    margin-block: 21px;
    gap: 21px;
  }
  .itinerary b {
    font-size: 13px;
  }
  .itinerary small {
    font-size: 10px;
  }
  .day-bottom {
    font-size: 9px;
  }
  .demo-map {
    min-height: 295px;
  }
  .map-place {
    width: 135px;
    left: 22%;
    top: 24%;
  }
  .map-place > img {
    height: 70px;
  }
  .label-city {
    top: 8%;
    left: 8%;
  }
  .map-key {
    font-size: 8px;
    bottom: 10px;
  }
  .under-planner {
    gap: 12px;
  }
  .under-planner p {
    font-size: 15px;
  }
  .under-planner p > span {
    display: block;
    margin-top: 5px;
  }
  .under-planner .text-link {
    margin-left: 34px;
  }
  .community-section {
    border-radius: 30px 30px 0 0;
    padding-block: 58px 42px;
  }
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dest-two,
  .dest-three {
    padding-top: 0;
  }
  .destination-photo {
    height: 310px;
  }
  .destination-chip {
    font-size: 10px;
    left: 16px;
    bottom: 16px;
  }
  .circle-arrow {
    bottom: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
  .destination-copy {
    padding-top: 14px;
  }
  .destination-copy h3 {
    font-size: 28px;
  }
  .destination-copy h3 br {
    display: none;
  }
  .destination-copy small {
    font-size: 10px;
  }
  .dest-two .destination-photo {
    border-radius: 24px 24px 85px 24px;
  }
  .community-footnote {
    font-size: 10px;
    margin-top: 26px;
  }
  .essentials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature {
    border-radius: 25px;
    padding: 26px;
  }
  .feature-copy > h3 {
    font-size: 32px;
  }
  .feature-copy > p {
    font-size: 13px;
  }
  .boarding-pass {
    margin-top: 30px;
  }
  .flight-cities b {
    font-size: 31px;
  }
  .expense-demo {
    margin-top: 30px;
  }
  .expense-settle b {
    display: inline;
    margin-left: 8px;
  }
  .together-note {
    gap: 20px;
    padding-block: 28px;
    align-items: flex-start;
  }
  .together-note > div {
    flex: 1;
    min-width: 150px;
  }
  .together-note h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .together-note .text-link {
    margin-left: 0;
  }
  .overlap-people i {
    width: 34px;
    height: 41px;
    font-size: 17px;
  }
  .device-section {
    grid-template-columns: 1fr;
    border-radius: 28px 28px 70px 28px;
  }
  .device-copy {
    padding: 34px 26px 0;
  }
  .device-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .device-copy h2 {
    font-size: 35px;
  }
  .device-copy > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 18px;
  }
  .device-copy .button {
    font-size: 13px;
    gap: 18px;
  }
  .phone-scene {
    min-height: 555px;
    padding-top: 38px;
  }
  .phone {
    width: 244px;
    transform: rotate(7deg) translateY(26px);
  }
  .device-sticker {
    top: 22px;
    right: 12px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pricing-grid > article {
    padding: 28px;
  }
  .pricing-grid h3 {
    font-size: 34px;
  }
  .pricing-grid .eyebrow {
    font-size: 10px;
  }
  .free-plan .button {
    margin-top: 0;
  }
  .plan-price {
    font-size: 27px;
    margin-top: 20px;
  }
  .check-list {
    font-size: 12px;
  }
  .pinwheel {
    width: 70px;
    height: 70px;
    top: 36px;
    right: 10px;
  }
  .atlas-intro {
    font-size: 18px;
  }
  .pricing-grid .button {
    font-size: 13px;
  }
  .plan-note {
    max-width: 225px;
    font-size: 9px;
  }
  .faq {
    padding-bottom: 64px;
    gap: 25px;
  }
  .faq .eyebrow {
    font-size: 9px;
    margin-bottom: 15px;
  }
  .faq h2 {
    font-size: 36px;
  }
  .faq-list summary {
    font-size: 13px;
    min-height: 76px;
  }
  .faq-list details p {
    font-size: 12px;
    padding-right: 12px;
  }
  .final-section {
    padding: 48px 22px;
    border-radius: 55px 24px 55px 24px;
  }
  .final-section .eyebrow {
    font-size: 9px;
  }
  .final-section h2 {
    font-size: 40px;
  }
  .final-section p:not(.eyebrow) {
    font-size: 14px;
  }
  .final-section .button {
    font-size: 12px;
    gap: 12px;
    padding-inline: 18px;
  }
  .final-spark {
    display: none;
  }
  .final-orbit {
    opacity: 0.5;
  }
  .footer {
    padding-top: 36px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .footer-top > p {
    flex: 1;
    max-width: 140px;
    font-size: 11px;
  }
  .footer-top .text-link {
    margin: 0;
    flex-basis: 100%;
  }
  .footer-links {
    gap: 5px 20px;
    margin-top: 15px;
    font-size: 10px;
  }
  .footer-links > span {
    flex-basis: 100%;
    margin-bottom: 8px;
  }
  .requisites {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
}
@media print {
  .nav,
  .actions,
  .phone-scene,
  .hero-collage,
  .footer {
    display: none;
  }
  .reveal.is-waiting {
    opacity: 1;
    transform: none;
  }
  .wrap {
    width: 100%;
  }
  .section {
    padding-block: 30px;
  }
}
