/* Scoped copy of the To The Place animated phone demo for the Trip Planner landing page. */

.ttp-trip-phone-showcase .ttp-home-trip-planner__visual {
  display: grid;
  place-items: center;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(520px, 50vw, 680px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone::before {
  content: "";
  position: absolute;
  inset: 9% 0 5%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 103, 200, .16), transparent 34%),
    radial-gradient(circle at 50% 96%, rgba(221, 162, 54, .13), transparent 30%);
  filter: blur(4px);
  opacity: .75;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__device {
  position: relative;
  width: clamp(288px, 29vw, 376px);
  aspect-ratio: 9 / 18.9;
  border: 7px solid #16181d;
  border-radius: clamp(36px, 4vw, 54px);
  background:
    linear-gradient(90deg, #0b0c10, #4b4d53 8%, #101216 15%, #0b0c10 86%, #4b4d53 94%, #0b0c10),
    #111318;
  box-shadow:
    0 34px 70px rgba(15, 23, 42, .26),
    0 0 0 2px rgba(255, 255, 255, .40) inset;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__device::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, .20);
  border-radius: calc(clamp(36px, 4vw, 54px) - 9px);
  pointer-events: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: #30343b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__button.is-left {
  left: -10px;
  top: 19%;
  height: 76px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__button.is-right {
  right: -10px;
  top: 28%;
  height: 112px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__notch {
  position: absolute;
  left: 50%;
  top: 6px;
  z-index: 4;
  width: 40%;
  height: 26px;
  border-radius: 0 0 17px 17px;
  background: #101216;
  transform: translateX(-50%);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__notch::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone__notch::after {
  content: "";
  position: absolute;
  top: 9px;
  border-radius: 999px;
  background: #22262e;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__notch::before {
  left: 38%;
  width: 36px;
  height: 5px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__notch::after {
  right: 18%;
  width: 7px;
  height: 7px;
  background: #182133;
  box-shadow: inset 0 0 0 2px rgba(56, 103, 200, .16);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__screen {
  position: absolute;
  inset: 13px;
  overflow: hidden;
  border-radius: calc(clamp(36px, 4vw, 54px) - 13px);
  background:
    linear-gradient(rgba(23, 32, 51, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, .03) 1px, transparent 1px),
    radial-gradient(circle at 76% 8%, rgba(56, 103, 200, .14), transparent 29%),
    linear-gradient(180deg, #fffdf7, #f4efe5);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__status {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 14px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  color: #172033;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .56);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__fade {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: block;
  background: #030712;
  opacity: 0;
  pointer-events: none;
  animation: ttp-phone-fade-to-black 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__status-left,
.ttp-trip-phone-showcase .ttp-home-trip-phone__status-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__time {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.02em;
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__location-arrow {
  width: 15px;
  height: 15px;
  background: #172033;
  clip-path: polygon(52% 0, 100% 100%, 52% 72%, 0 100%);
  transform: rotate(45deg);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__signal {
  display: inline-flex;
  gap: 2px;
  align-items: end;
  height: 17px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__signal i {
  width: 4px;
  border-radius: 999px;
  background: #172033;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__signal i:nth-child(1) {
  height: 7px;
  opacity: .48;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__signal i:nth-child(2) {
  height: 10px;
  opacity: .65;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__signal i:nth-child(3) {
  height: 14px;
  opacity: .84;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__signal i:nth-child(4) {
  height: 17px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__network {
  display: inline-flex;
  align-items: flex-start;
  gap: 1px;
  color: #172033;
  font-size: 17px;
  font-weight: 950;
  line-height: .86;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__network small {
  font-size: 7px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__battery {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 16px;
  border: 2px solid rgba(23, 32, 51, .72);
  border-radius: 6px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__battery::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 4px;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: rgba(23, 32, 51, .72);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__battery i {
  position: absolute;
  inset: 3px 6px 3px 3px;
  border-radius: 3px;
  background: #172033;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__browserbar {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 45px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 999px;
  padding: 5px 12px 5px 8px;
  background: rgba(255, 253, 248, .74);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__favicon {
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, #12336b 0 54%, #d7a436 54% 100%);
  color: #fff;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .38);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__browserbar b {
  min-width: 0;
  overflow: hidden;
  color: #4b5667;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: -.01em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-alert {
  position: absolute;
  left: 17px;
  right: 17px;
  top: 42px;
  z-index: 12;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  padding: 10px 11px 11px;
  background:
    linear-gradient(135deg, rgba(42, 47, 58, .96), rgba(22, 26, 36, .98));
  color: #f8fafc;
  box-shadow: 0 24px 38px rgba(15, 23, 42, .26);
  opacity: 0;
  transform: translateY(-26px) scale(.97);
  animation: ttp-phone-score-alert 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  color: rgba(248, 250, 252, .68);
  font-size: 8px;
  font-weight: 850;
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-meta b {
  color: #fff;
  font-size: 9px;
  font-weight: 950;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body div {
  display: grid;
  gap: 4px;
  justify-items: center;
  min-width: 0;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body i {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 23px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body i.is-pitt {
  color: #ffb81c;
  font-family: Georgia, serif;
  font-size: 14px;
  text-shadow: -1px -1px 0 #003594, 1px -1px 0 #003594, -1px 1px 0 #003594, 1px 1px 0 #003594;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body i.is-wvu {
  color: #eaaa00;
  font-size: 12px;
  letter-spacing: -.08em;
  text-shadow: 1px 1px 0 #002855;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body span {
  overflow: hidden;
  max-width: 78px;
  color: rgba(248, 250, 252, .86);
  font-size: 7px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body strong {
  color: #fff;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__score-body em {
  color: rgba(248, 250, 252, .58);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 11;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 118px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 253, 248, .82);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, .16),
    inset 0 1px 0 rgba(255, 255, 255, .82);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback button {
  appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 32, 51, .92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  cursor: pointer;
  padding: 0;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback .is-toggle::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone__playback .is-toggle::after {
  content: "";
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback .is-toggle {
  grid-template-columns: auto auto;
  gap: 4px;
  background: rgba(44, 112, 104, .92);
  animation: ttp-phone-playback-pulse 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-toggle {
  grid-template-columns: auto;
  background: rgba(23, 32, 51, .92);
  animation: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-toggle::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  border-radius: 0;
  background: transparent;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-toggle::after {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback .is-step {
  display: none;
  width: 25px;
  height: 25px;
  background: rgba(122, 71, 55, .92);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-paused .ttp-home-trip-phone__playback .is-step {
  display: grid;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback .is-step::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback .is-prev::before {
  transform: rotate(225deg);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback i {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: 42px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31, 41, 55, .14);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__playback i::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #dda236, #2c7068);
  transform: translateX(-84%);
  animation: ttp-phone-playback-progress 38s linear infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__brand {
  position: absolute;
  left: 24px;
  top: 50px;
  z-index: 6;
  color: #7a4737;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene {
  position: absolute;
  inset: 78px 24px 26px;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px) scale(.985);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene span {
  color: #7a4737;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene strong {
  color: #172033;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: -.012em;
  line-height: 1.02;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene em {
  color: #5a6676;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search {
  animation: ttp-phone-search-scene 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-save {
  animation: ttp-phone-save-scene 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route {
  inset: 76px 18px 20px;
  align-content: start;
  animation: ttp-phone-route-scene 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar,
.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row,
.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card,
.ttp-trip-phone-showcase .ttp-home-trip-phone__nav {
  border: 1px solid rgba(31, 41, 55, .12);
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar {
  position: relative;
  min-height: 46px;
  border-radius: 999px;
  padding: 14px 18px 12px 42px;
  color: #5a6676;
  font-size: 13px;
  font-weight: 850;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #2c7068;
  border-radius: 50%;
  transform: translateY(-50%);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 28px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #2c7068;
  transform: rotate(45deg);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  border-radius: 18px;
  padding: 14px;
  animation: ttp-phone-story-row 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row i {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(23, 32, 51, .80), rgba(44, 112, 104, .36)),
    #172033;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row b {
  color: #172033;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  align-items: center;
  margin-top: 0;
  border-left: 5px solid #2c7068;
  border-radius: 18px;
  padding: 10px 11px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card b,
.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i {
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card b {
  color: #172033;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.06;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i {
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(44, 112, 104, .11);
  color: #2c7068;
  font-style: normal;
  opacity: 0;
  animation: ttp-phone-added-pill 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map {
  position: relative;
  height: 330px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .13);
  border-radius: 22px;
  background:
    linear-gradient(32deg, transparent 0 35%, rgba(255,255,255,.56) 35% 38%, transparent 38%),
    linear-gradient(-24deg, transparent 0 60%, rgba(255,255,255,.46) 60% 63%, transparent 63%),
    linear-gradient(rgba(44, 112, 104, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 112, 104, .065) 1px, transparent 1px),
    #f0e8dc;
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__road,
.ttp-trip-phone-showcase .ttp-home-trip-phone__route-base,
.ttp-trip-phone-showcase .ttp-home-trip-phone__route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__road {
  stroke: rgba(122, 71, 55, .14);
  stroke-width: 13;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__road.is-alt {
  stroke: rgba(44, 112, 104, .13);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__route-base {
  stroke: rgba(23, 32, 51, .14);
  stroke-width: 14;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__route-line {
  stroke: url(#ttp-home-phone-route);
  stroke-width: 7;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: ttp-phone-route-draw 38s cubic-bezier(.4, 0, .2, 1) infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__car {
  filter: drop-shadow(0 12px 12px rgba(15, 23, 42, .24));
  opacity: 0;
  animation: ttp-phone-car-show 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 4px solid #fffefa;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  box-shadow: 0 14px 22px rgba(15, 23, 42, .20);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-start {
  left: calc(26% - 21px);
  top: calc(20% - 21px);
  background: #2c7068;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-one {
  left: calc(35% - 21px);
  top: calc(66% - 21px);
  background: #dda236;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-two {
  left: calc(80% - 21px);
  top: calc(48% - 21px);
  background: #7a4737;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end {
  left: calc(72% - 24px);
  top: calc(85% - 21px);
  width: 48px;
  background: #172033;
  font-size: 10px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-left: 4px solid #dda236;
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: #2c7068;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 13px 22px rgba(15, 23, 42, .13);
  opacity: 0;
  transform: translateY(8px) scale(.96);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-one {
  left: 48%;
  top: 26%;
  animation: ttp-phone-nearby-one 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-two {
  left: 18%;
  bottom: 18%;
  border-left-color: #2c7068;
  animation: ttp-phone-nearby-two 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 999px;
  padding: 8px 10px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

@keyframes ttp-phone-search-scene {
  0%,
  28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-save-scene {
  0%,
  26% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  36%,
  55% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  64%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-route-scene {
  0%,
  54% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  64%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.99);
  }
}

@keyframes ttp-phone-story-row {
  0%,
  13% {
    opacity: 0;
    transform: translateY(8px);
  }
  20%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ttp-phone-added-pill {
  0%,
  39% {
    opacity: 0;
    transform: scale(.88);
  }
  45%,
  60% {
    opacity: 1;
    transform: scale(1);
  }
  68%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-route-draw {
  0%,
  62% {
    stroke-dashoffset: 520;
  }
  89%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-phone-car-show {
  0%,
  60% {
    opacity: 0;
  }
  66%,
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-nearby-one {
  0%,
  72% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  78%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@keyframes ttp-phone-nearby-two {
  0%,
  80% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  86%,
  96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px) scale(.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__story-row,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__route-line,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__car,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__map b {
    animation: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-save {
    display: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__car,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__map b {
    opacity: 1;
    transform: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__route-line {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 980px) {
  .ttp-trip-phone-showcase .ttp-home-trip-phone {
    min-height: 610px;
  }
}

@media (max-width: 700px) {
  .ttp-trip-phone-showcase .ttp-home-trip-phone {
    min-height: 560px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__device {
    width: min(310px, 92vw);
  }
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__web-header {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 82px;
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 5px 0 8px;
  border-bottom: 1px solid rgba(31, 41, 55, .08);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__logo {
  min-width: 0;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__logo img {
  display: block;
  width: min(158px, 100%);
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 2px rgba(15, 23, 42, .15));
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__logo span {
  color: #172033;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__menu {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  color: #273244;
  font-size: 5px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__menu span:first-child {
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(56, 103, 200, .12);
  color: #2563eb;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__brand {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene {
  inset: 142px 24px 26px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route {
  inset: 136px 18px 20px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-save {
  align-content: start;
  gap: 6px;
  padding-top: 2px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search {
  align-content: start;
  gap: 8px;
  padding-top: 4px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search > strong {
  font-size: clamp(24px, 2.65vw, 34px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar {
  color: transparent;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar b {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: #5a6676;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  vertical-align: bottom;
  animation: ttp-phone-type-query 38s steps(16, end) infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar b::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 3px;
  border-radius: 999px;
  background: #2c7068;
  vertical-align: -2px;
  animation: ttp-phone-type-caret 1s steps(1, end) infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__web-preview {
  overflow: hidden;
  height: 58px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 15px;
  background: rgba(255, 253, 248, .74);
  box-shadow: 0 14px 22px rgba(15, 23, 42, .07);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__web-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 62%;
  opacity: .82;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview {
  overflow: hidden;
  display: grid;
  min-height: 98px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 16px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 16px 28px rgba(15, 23, 42, .09);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview img {
  display: block;
  width: 100%;
  height: 48px;
  object-fit: cover;
  object-position: center 42%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview div {
  display: grid;
  gap: 2px;
  padding: 7px 9px 8px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview span {
  color: #7a4737;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview strong {
  display: -webkit-box;
  overflow: hidden;
  color: #172033;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview em {
  color: #5a6676;
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-left: 4px solid #7a4737;
  border-radius: 15px;
  background: rgba(255, 253, 248, .68);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .065);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini span {
  color: #7a4737;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini strong {
  display: -webkit-box;
  overflow: hidden;
  color: #172033;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini em {
  color: #5a6676;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions {
  display: grid;
  gap: 5px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 27px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 13px;
  padding: 6px 9px;
  background: rgba(255, 253, 248, .70);
  color: #536072;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 20px rgba(15, 23, 42, .055);
  opacity: 0;
  transform: translateY(7px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dda236;
  box-shadow: 0 0 0 3px rgba(221, 162, 54, .12);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(1) {
  animation: ttp-phone-suggestion-one 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(2) {
  animation: ttp-phone-suggestion-two 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(3) {
  animation: ttp-phone-suggestion-three 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4) {
  animation: ttp-phone-suggestion-four 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row {
  animation: ttp-phone-story-row-premium 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row {
  min-height: 34px;
  border-radius: 13px;
  padding: 8px 10px;
  position: relative;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row i {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2c7068;
  box-shadow: 0 0 0 3px rgba(44, 112, 104, .12);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row b {
  color: #536072;
  font-size: 11px;
  line-height: 1.1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row em {
  margin-left: auto;
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(44, 112, 104, .11);
  color: #2c7068;
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(.86);
  animation: ttp-phone-result-added 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 4;
  width: 21px;
  height: 27px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-result-cursor 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row::after {
  content: "";
  position: absolute;
  right: 21px;
  top: calc(50% - 14px);
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-result-click-ring 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav {
  position: relative;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(8px) scale(.96);
  animation: ttp-phone-save-nav 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% + 3px);
  z-index: 4;
  width: 21px;
  height: 27px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-waze-cursor 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav::after {
  content: "";
  position: absolute;
  left: calc(50% - 13px);
  top: calc(50% - 13px);
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(14, 165, 233, .36);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-waze-click-ring 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav .is-waze {
  animation: ttp-phone-waze-choice 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card::before {
  content: "";
  position: absolute;
  right: 31px;
  top: 50%;
  z-index: 4;
  width: 22px;
  height: 28px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-save-cursor 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 14px);
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-save-click-ring 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card b {
  animation: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i {
  animation: ttp-phone-added-pill-premium 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card span {
  grid-column: 1;
  color: #5a6676;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end {
  left: calc(72% - 34px);
  width: 68px;
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: .04em;
  line-height: 1.05;
  text-align: center;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 6px 8px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: #5a6676;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(15, 23, 42, .11);
  opacity: 0;
  transform: translateY(6px) scale(.96);
  animation: ttp-phone-nearby-place-pop 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(31, 41, 55, .18);
  transform: translateY(-50%);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label.is-one-label {
  left: 42%;
  top: 62%;
  color: #7a4737;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label.is-two-label {
  left: 42%;
  top: 44%;
  color: #2c7068;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label.is-end-label {
  right: 5%;
  top: 80%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 24px);
  min-height: 30px;
  border: 1px solid rgba(31, 41, 55, .11);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 253, 248, .91);
  box-shadow: 0 14px 22px rgba(15, 23, 42, .12);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle em {
  position: relative;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(44, 112, 104, .42);
  border-radius: 5px;
  background: rgba(255, 253, 248, .94);
  animation: ttp-phone-nearby-checkbox 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle em::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(.82);
  animation: ttp-phone-nearby-check 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle small {
  color: #172033;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  z-index: 8;
  width: 18px;
  height: 24px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-nearby-cursor 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  z-index: 7;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-nearby-click-ring 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b,
.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot {
  animation: ttp-phone-nearby-place-pop 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-one {
  animation: ttp-phone-nearby-place-pop 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-two {
  animation: ttp-phone-nearby-place-pop 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-three {
  left: 8%;
  top: 44%;
  border-left-color: #7a4737;
  animation: ttp-phone-nearby-place-pop 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-four {
  right: 5%;
  top: 28%;
  border-left-color: #dda236;
  animation: ttp-phone-nearby-place-pop 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 3px solid #fffefa;
  border-radius: 50%;
  background: #dda236;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 13px 18px rgba(15, 23, 42, .18);
  opacity: 0;
  transform: translateY(6px) scale(.86);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-one {
  left: 58%;
  top: 36%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-two {
  left: 16%;
  top: 52%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-three {
  right: 18%;
  top: 18%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-four {
  right: 10%;
  bottom: 22%;
}

@keyframes ttp-phone-type-query {
  0%,
  18% {
    max-width: 0;
  }
  32%,
  100% {
    max-width: 16ch;
  }
}

@keyframes ttp-phone-type-caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-suggestion-one {
  0%,
  31% {
    opacity: 0;
    transform: translateY(7px);
  }
  35%,
  47% {
    opacity: 1;
    transform: translateY(0);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-two {
  0%,
  33% {
    opacity: 0;
    transform: translateY(7px);
  }
  37%,
  47% {
    opacity: .82;
    transform: translateY(0);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-three {
  0%,
  35% {
    opacity: 0;
    transform: translateY(7px);
  }
  39%,
  47% {
    opacity: .72;
    transform: translateY(0);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-four {
  0%,
  37% {
    opacity: 0;
    transform: translateY(7px);
  }
  41%,
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  56%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-story-row-premium {
  0%,
  43% {
    opacity: 0;
    transform: translateY(8px);
  }
  48%,
  55% {
    opacity: 1;
    transform: translateY(0);
  }
  61%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-result-cursor {
  0%,
  46% {
    opacity: 0;
    transform: translate3d(-24px, 10px, 0) rotate(-6deg) scale(.98);
  }
  50%,
  53% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  55% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  57% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  62%,
  100% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-result-click-ring {
  0%,
  53% {
    opacity: 0;
    transform: scale(.2);
  }
  56% {
    opacity: .76;
    transform: scale(1);
  }
  62%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-result-added {
  0%,
  54% {
    opacity: 0;
    transform: scale(.86);
  }
  58%,
  63% {
    opacity: 1;
    transform: scale(1);
  }
  68%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-cursor {
  0%,
  61% {
    opacity: 0;
    transform: translate3d(-34px, 10px, 0) rotate(-6deg) scale(.98);
  }
  65%,
  68% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-save-click-ring {
  0%,
  68% {
    opacity: 0;
    transform: scale(.2);
  }
  71% {
    opacity: .76;
    transform: scale(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-save-label {
  0%,
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  75%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-added-pill-premium {
  0%,
  67% {
    opacity: 0;
    transform: scale(.88);
  }
  70%,
  82% {
    opacity: 1;
    transform: scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-nav {
  0%,
  72% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  76%,
  82% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }
}

@keyframes ttp-phone-waze-cursor {
  0%,
  76% {
    opacity: 0;
    transform: translate3d(-34px, 10px, 0) rotate(-6deg) scale(.98);
  }
  79%,
  82% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  84% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  86% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  89%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-waze-click-ring {
  0%,
  82% {
    opacity: 0;
    transform: scale(.2);
  }
  85% {
    opacity: .78;
    transform: scale(1);
  }
  89%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-waze-choice {
  0%,
  82% {
    transform: translateY(0) scale(1);
    filter: none;
  }
  85%,
  88% {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 8px 10px rgba(14, 165, 233, .30));
  }
  92%,
  100% {
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes ttp-phone-score-alert {
  0%,
  10% {
    opacity: 0;
    transform: translateY(-30px) scale(.97);
  }
  15%,
  34% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  42%,
  100% {
    opacity: 0;
    transform: translateY(-22px) scale(.985);
  }
}

@keyframes ttp-phone-search-scene {
  0%,
  56% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  63%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-save-scene {
  0%,
  58% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  64%,
  77% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  82%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-route-scene {
  0%,
  78% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  82%,
  99% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.99);
  }
}

@keyframes ttp-phone-route-draw {
  0%,
  82% {
    stroke-dashoffset: 520;
  }
  90%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-phone-car-show {
  0%,
  82% {
    opacity: 0;
  }
  85%,
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-nearby-cursor {
  0%,
  84% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0) rotate(-6deg) scale(.98);
  }
  86%,
  87% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  88% {
    opacity: 1;
    transform: translate3d(1px, 1px, 0) rotate(-6deg) scale(.86);
  }
  89% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  93%,
  100% {
    opacity: 0;
    transform: translate3d(18px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-nearby-click-ring {
  0%,
  86% {
    opacity: 0;
    transform: scale(.2);
  }
  89% {
    opacity: .72;
    transform: scale(1);
  }
  94%,
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes ttp-phone-nearby-checkbox {
  0%,
  86% {
    background: rgba(255, 253, 248, .94);
    border-color: rgba(44, 112, 104, .42);
  }
  89%,
  100% {
    background: #2c7068;
    border-color: #2c7068;
  }
}

@keyframes ttp-phone-nearby-check {
  0%,
  86% {
    opacity: 0;
    transform: rotate(45deg) scale(.6);
  }
  90%,
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(.82);
  }
}

@keyframes ttp-phone-nearby-place-pop {
  0%,
  87% {
    opacity: 0;
    transform: translateY(6px) scale(.9);
  }
  91%,
  99% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-3px) scale(.96);
  }
}

@keyframes ttp-phone-playback-progress {
  0% {
    transform: translateX(-96%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes ttp-phone-playback-pulse {
  0%,
  39% {
    background: rgba(44, 112, 104, .92);
  }
  45%,
  60% {
    background: rgba(122, 71, 55, .92);
  }
  72%,
  100% {
    background: rgba(44, 112, 104, .92);
  }
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-paused * {
  animation-play-state: paused !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__score-alert,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__scene,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__suggestions b,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__address-card i,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__map b,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-dot,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__pin-label {
  opacity: 0 !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__scene,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__suggestions b,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__map b,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-dot,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__pin-label {
  transform: translateY(8px) scale(.96) !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__searchbar b,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__searchbar b::after,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__story-row::after,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__address-card::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__address-card::after,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nav.is-save-nav::after,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-toggle::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__nearby-toggle::after {
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__scene.is-search,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__scene.is-save,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__scene.is-route,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__suggestions b,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__story-row,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__nav.is-save-nav,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__map b,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__nearby-dot,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__pin-label {
  opacity: 1 !important;
  transform: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__searchbar b {
  max-width: 16ch !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="search"] .ttp-home-trip-phone__story-row em,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__address-card i {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="save"] .ttp-home-trip-phone__address-card b {
  opacity: 1 !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__route-line {
  stroke-dashoffset: 0 !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__car {
  opacity: 1 !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__nearby-toggle em {
  background: #2c7068 !important;
  border-color: #2c7068 !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__nearby-toggle em::after {
  opacity: 1 !important;
  transform: rotate(45deg) scale(.82) !important;
  animation: none !important;
}

/* Extended phone route and sharing demo. */
.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route {
  gap: 8px;
  animation: ttp-phone-route-scene 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route > span,
.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-arrival > span {
  font-size: 8px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route > strong {
  max-width: 18ch;
  font-size: 21px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-arrival {
  align-content: start;
  gap: 8px;
  padding-top: 2px;
  animation: ttp-phone-arrival-scene 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-arrival > strong {
  font-size: 24px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-share {
  inset: 126px 20px 24px;
  align-content: start;
  animation: ttp-phone-share-scene 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map {
  height: 350px;
  background:
    linear-gradient(rgba(255, 253, 248, .08), rgba(255, 253, 248, .08)),
    #dbe6dd;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-tiles {
  position: absolute;
  inset: -12% -15% -4% -14%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: .82;
  transform: rotate(-4deg) scale(1.08);
  filter: saturate(.82) contrast(.94) brightness(1.06);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-tiles img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 76%, rgba(221, 162, 54, .12), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 248, .08), rgba(255, 253, 248, .34));
  pointer-events: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__road {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__route-base,
.ttp-trip-phone-showcase .ttp-home-trip-phone__route-line {
  position: relative;
  z-index: 3;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__route-base {
  stroke: rgba(255, 253, 248, .82);
  stroke-width: 17;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__route-line {
  stroke-width: 7;
  animation: ttp-phone-route-draw 38s cubic-bezier(.4, 0, .2, 1) infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__car {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-car {
  position: absolute;
  left: 70%;
  top: 17%;
  z-index: 8;
  width: 39px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, .96);
  border-radius: 999px 999px 9px 9px;
  background:
    linear-gradient(90deg, transparent 0 13%, #172033 13% 23%, transparent 23% 77%, #172033 77% 87%, transparent 87%),
    linear-gradient(180deg, #fffefa 0%, #f4efe5 57%, #d9dee6 58% 100%);
  box-shadow:
    0 12px 18px rgba(15, 23, 42, .24),
    inset 0 -1px 0 rgba(15, 23, 42, .20),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(104deg) scale(.92);
  animation: ttp-phone-real-car-drive 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-car::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 3px;
  width: 17px;
  height: 8px;
  border: 1px solid rgba(23, 32, 51, .34);
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(135deg, rgba(219, 234, 254, .92), rgba(255, 255, 255, .54));
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-car::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: -4px;
  height: 8px;
  background:
    radial-gradient(circle at left center, #172033 0 4px, transparent 4.5px),
    radial-gradient(circle at right center, #172033 0 4px, transparent 4.5px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-start {
  left: calc(73% - 21px);
  top: calc(18% - 21px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-one {
  left: calc(57% - 21px);
  top: calc(50% - 21px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-two {
  left: calc(43% - 21px);
  top: calc(68% - 21px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end {
  left: calc(34% - 34px);
  top: calc(86% - 21px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label.is-one-label {
  left: 48%;
  top: 44%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label.is-two-label {
  left: 28%;
  top: 63%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label.is-end-label {
  left: 40%;
  right: auto;
  top: 82%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-one {
  left: 11%;
  top: 24%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-two {
  left: 60%;
  bottom: 18%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-three {
  left: 8%;
  top: 52%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b.is-nearby-four {
  right: 6%;
  top: 34%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-one {
  left: 62%;
  top: 31%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-two {
  left: 16%;
  top: 44%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-three {
  right: 16%;
  top: 22%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-four {
  right: 14%;
  bottom: 20%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-five {
  left: 34%;
  top: 28%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-six {
  left: 30%;
  bottom: 13%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map b {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot {
  width: 19px;
  height: 19px;
  border: 2px solid #fffefa;
  border-radius: 50% 50% 50% 4px;
  background: #dda236;
  color: transparent;
  font-size: 0;
  box-shadow:
    0 10px 16px rgba(15, 23, 42, .22),
    0 0 0 5px rgba(221, 162, 54, .13);
  transform: translateY(6px) rotate(-45deg) scale(.9);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fffefa;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .10);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-three,
.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-six {
  background: #7a4737;
  box-shadow:
    0 10px 16px rgba(15, 23, 42, .22),
    0 0 0 5px rgba(122, 71, 55, .13);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-nearby-dot-four {
  background: #2c7068;
  box-shadow:
    0 10px 16px rgba(15, 23, 42, .22),
    0 0 0 5px rgba(44, 112, 104, .13);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-credit {
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 7;
  border-radius: 999px;
  padding: 3px 6px;
  background: rgba(255, 253, 248, .82);
  color: rgba(39, 50, 68, .72);
  font-size: 6px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__arrival-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 18px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 18px 32px rgba(15, 23, 42, .12);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__arrival-card img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: center 45%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__arrival-card figcaption {
  display: grid;
  gap: 4px;
  padding: 11px 12px 12px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__arrival-card b {
  color: #172033;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__arrival-card em {
  color: #5a6676;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 50%;
  background: rgba(255, 253, 248, .88);
  color: #172033;
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 13px 22px rgba(15, 23, 42, .12);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions .is-facebook {
  color: #2563eb;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions::before {
  content: "";
  position: absolute;
  left: calc(50% - 48px);
  top: 24px;
  z-index: 4;
  width: 21px;
  height: 27px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-share-cursor 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions::after {
  content: "";
  position: absolute;
  left: calc(50% - 55px);
  top: 6px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(37, 99, 235, .30);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-share-click-ring 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page {
  overflow: hidden;
  display: grid;
  gap: 0;
  border: 1px solid rgba(31, 41, 55, .12);
  border-radius: 20px;
  background: rgba(255, 253, 248, .90);
  box-shadow: 0 20px 34px rgba(15, 23, 42, .14);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(31, 41, 55, .08);
  background: rgba(37, 99, 235, .08);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-top b {
  color: #2563eb;
  font-size: 12px;
  font-weight: 950;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-top span {
  color: #5a6676;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .04em;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer,
.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page article {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer {
  border-bottom: 1px solid rgba(31, 41, 55, .08);
  overflow: hidden;
  max-height: 170px;
  transform-origin: top;
  animation: ttp-phone-social-composer-stage 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header,
.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header i,
.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header i {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #172033;
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header div,
.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header div {
  display: grid;
  gap: 2px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header strong,
.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header strong {
  font-size: 11px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header em,
.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header em {
  font-size: 8px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer p {
  position: relative;
  min-height: 38px;
  margin: 0;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 14px;
  padding: 9px 10px;
  background: rgba(255, 253, 248, .78);
  color: #172033;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer p span {
  display: block;
  overflow: hidden;
  color: #172033;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.28;
  text-transform: none;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: ttp-phone-social-type 38s steps(45, end) infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer p::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 13px;
  left: 11px;
  top: 11px;
  border-radius: 999px;
  background: #2c7068;
  opacity: 0;
  animation: ttp-phone-social-caret 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer button {
  justify-self: end;
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  background: #2563eb;
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(37, 99, 235, .20);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post {
  opacity: 0;
  transform: translateY(10px) scale(.98);
  animation: ttp-phone-social-post-show 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post > p {
  color: #172033;
  font-size: 10px;
  font-weight: 850;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post > div {
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 15px;
  background: rgba(255, 253, 248, .82);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page article img {
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0;
  object-fit: cover;
  object-position: center 45%;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page h3 {
  margin: 8px 9px 0;
  color: #172033;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -.01em;
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page p {
  margin: 0;
  color: #5a6676;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post div p {
  padding: 5px 9px 9px;
  font-size: 8px;
}

@keyframes ttp-phone-score-alert {
  0%,
  6% {
    opacity: 0;
    transform: translateY(-30px) scale(.97);
  }
  9%,
  16% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  20%,
  100% {
    opacity: 0;
    transform: translateY(-22px) scale(.985);
  }
}

@keyframes ttp-phone-search-scene {
  0%,
  33% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  37%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-save-scene {
  0%,
  33% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  37%,
  50% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-route-scene {
  0%,
  50% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  54%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-arrival-scene {
  0%,
  71% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  74%,
  79% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  82%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-share-scene {
  0%,
  78% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  81%,
  98% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.99);
  }
}

@keyframes ttp-phone-social-composer-stage {
  0%,
  79% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    transform: translateY(-8px) scale(.985);
  }
  81%,
  86% {
    opacity: 1;
    max-height: 170px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom-color: rgba(31, 41, 55, .08);
    transform: translateY(0) scale(1);
  }
  88%,
  100% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    transform: translateY(-8px) scale(.985);
  }
}

@keyframes ttp-phone-social-type {
  0%,
  80% {
    clip-path: inset(0 100% 0 0);
  }
  86%,
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes ttp-phone-social-caret {
  0%,
  80% {
    opacity: 0;
    transform: translateX(0);
  }
  81% {
    opacity: .8;
  }
  86% {
    opacity: .8;
    transform: translateX(116px);
  }
  87%,
  100% {
    opacity: 0;
    transform: translateX(116px);
  }
}

@keyframes ttp-phone-social-post-show {
  0%,
  86% {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  89%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ttp-phone-fade-to-black {
  0%,
  97% {
    opacity: 0;
  }
  98.8%,
  100% {
    opacity: 1;
  }
}

@keyframes ttp-phone-type-query {
  0%,
  7% {
    max-width: 0;
  }
  15%,
  100% {
    max-width: 16ch;
  }
}

@keyframes ttp-phone-suggestion-one {
  0%,
  14% {
    opacity: 0;
    transform: translateY(7px);
  }
  17%,
  28% {
    opacity: 1;
    transform: translateY(0);
  }
  34%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-two {
  0%,
  16% {
    opacity: 0;
    transform: translateY(7px);
  }
  19%,
  28% {
    opacity: .82;
    transform: translateY(0);
  }
  34%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-three {
  0%,
  18% {
    opacity: 0;
    transform: translateY(7px);
  }
  21%,
  28% {
    opacity: .72;
    transform: translateY(0);
  }
  34%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-four {
  0%,
  20% {
    opacity: 0;
    transform: translateY(7px);
  }
  23%,
  32% {
    opacity: 1;
    transform: translateY(0);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-story-row-premium {
  0%,
  25% {
    opacity: 0;
    transform: translateY(8px);
  }
  28%,
  34% {
    opacity: 1;
    transform: translateY(0);
  }
  38%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-result-cursor {
  0%,
  28% {
    opacity: 0;
    transform: translate3d(-24px, 10px, 0) rotate(-6deg) scale(.98);
  }
  30%,
  31.5% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  32.5% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  35%,
  100% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-result-click-ring {
  0%,
  31% {
    opacity: 0;
    transform: scale(.2);
  }
  33% {
    opacity: .76;
    transform: scale(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-result-added {
  0%,
  31% {
    opacity: 0;
    transform: scale(.86);
  }
  34%,
  38% {
    opacity: 1;
    transform: scale(1);
  }
  41%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-cursor {
  0%,
  38% {
    opacity: 0;
    transform: translate3d(-34px, 10px, 0) rotate(-6deg) scale(.98);
  }
  41%,
  42.5% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  43.5% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  46%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-save-click-ring {
  0%,
  42% {
    opacity: 0;
    transform: scale(.2);
  }
  44% {
    opacity: .76;
    transform: scale(1);
  }
  47%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-added-pill-premium {
  0%,
  42% {
    opacity: 0;
    transform: scale(.88);
  }
  45%,
  50% {
    opacity: 1;
    transform: scale(1);
  }
  53%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-nav {
  0%,
  43% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  46%,
  51% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }
}

@keyframes ttp-phone-waze-cursor {
  0%,
  45% {
    opacity: 0;
    transform: translate3d(-34px, 10px, 0) rotate(-6deg) scale(.98);
  }
  48%,
  49.5% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  50.5% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  53%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-waze-click-ring {
  0%,
  49% {
    opacity: 0;
    transform: scale(.2);
  }
  51% {
    opacity: .78;
    transform: scale(1);
  }
  54%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-waze-choice {
  0%,
  49% {
    transform: translateY(0) scale(1);
    filter: none;
  }
  51%,
  54% {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 8px 10px rgba(14, 165, 233, .30));
  }
  57%,
  100% {
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes ttp-phone-route-draw {
  0%,
  53% {
    stroke-dashoffset: 520;
  }
  68%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-phone-real-car-drive {
  0%,
  53% {
    opacity: 0;
    left: 70%;
    top: 17%;
    transform: translate(-50%, -50%) rotate(104deg) scale(.92);
  }
  55% {
    opacity: 1;
    left: 70%;
    top: 17%;
    transform: translate(-50%, -50%) rotate(104deg) scale(1);
  }
  60% {
    opacity: 1;
    left: 62%;
    top: 39%;
    transform: translate(-50%, -50%) rotate(112deg) scale(1);
  }
  66% {
    opacity: 1;
    left: 48%;
    top: 61%;
    transform: translate(-50%, -50%) rotate(124deg) scale(1);
  }
  71% {
    opacity: 1;
    left: 34%;
    top: 86%;
    transform: translate(-50%, -50%) rotate(105deg) scale(1);
  }
  74%,
  100% {
    opacity: 0;
    left: 34%;
    top: 86%;
    transform: translate(-50%, -50%) rotate(105deg) scale(.92);
  }
}

@keyframes ttp-phone-car-show {
  0%,
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-nearby-cursor {
  0%,
  55% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0) rotate(-6deg) scale(.98);
  }
  58%,
  59% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  60% {
    opacity: 1;
    transform: translate3d(1px, 1px, 0) rotate(-6deg) scale(.86);
  }
  63%,
  100% {
    opacity: 0;
    transform: translate3d(18px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-nearby-click-ring {
  0%,
  59% {
    opacity: 0;
    transform: scale(.2);
  }
  61% {
    opacity: .72;
    transform: scale(1);
  }
  64%,
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes ttp-phone-nearby-checkbox {
  0%,
  59% {
    background: rgba(255, 253, 248, .94);
    border-color: rgba(44, 112, 104, .42);
  }
  61%,
  100% {
    background: #2c7068;
    border-color: #2c7068;
  }
}

@keyframes ttp-phone-nearby-check {
  0%,
  59% {
    opacity: 0;
    transform: rotate(45deg) scale(.6);
  }
  62%,
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(.82);
  }
}

@keyframes ttp-phone-nearby-place-pop {
  0%,
  61% {
    opacity: 0;
    transform: translateY(6px) rotate(-45deg) scale(.9);
  }
  64%,
  72% {
    opacity: 1;
    transform: translateY(0) rotate(-45deg) scale(1);
  }
  75%,
  100% {
    opacity: 0;
    transform: translateY(-3px) rotate(-45deg) scale(.96);
  }
}

@keyframes ttp-phone-share-cursor {
  0%,
  74% {
    opacity: 0;
    transform: translate3d(24px, 10px, 0) rotate(-6deg) scale(.98);
  }
  76% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  77% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  79%,
  100% {
    opacity: 0;
    transform: translate3d(20px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-share-click-ring {
  0%,
  76% {
    opacity: 0;
    transform: scale(.2);
  }
  78% {
    opacity: .72;
    transform: scale(1);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

/* Flow-tuned homepage phone demo: search -> save -> directions -> route -> share. */
@keyframes ttp-phone-score-alert {
  0%,
  6% {
    opacity: 0;
    transform: translateY(-30px) scale(.97);
  }
  8.5%,
  16% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  18.5%,
  100% {
    opacity: 0;
    transform: translateY(-22px) scale(.985);
  }
}

@keyframes ttp-phone-search-scene {
  0%,
  34% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  38%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-save-scene {
  0%,
  34% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  38%,
  54% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  58%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-route-scene {
  0%,
  54% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  58%,
  76% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  80%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-arrival-scene {
  0%,
  74% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  77%,
  83% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  86%,
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
  }
}

@keyframes ttp-phone-share-scene {
  0%,
  82% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  85%,
  98.6% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.99);
  }
}

@keyframes ttp-phone-type-query {
  0%,
  4% {
    max-width: 0;
  }
  12%,
  100% {
    max-width: 16ch;
  }
}

@keyframes ttp-phone-suggestion-one {
  0%,
  13% {
    opacity: 0;
    transform: translateY(7px);
  }
  16%,
  27% {
    opacity: 1;
    transform: translateY(0);
  }
  34%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-two {
  0%,
  14.5% {
    opacity: 0;
    transform: translateY(7px);
  }
  17.5%,
  27% {
    opacity: .82;
    transform: translateY(0);
  }
  34%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-three {
  0%,
  16% {
    opacity: 0;
    transform: translateY(7px);
  }
  19%,
  27% {
    opacity: .72;
    transform: translateY(0);
  }
  34%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-suggestion-four {
  0%,
  17.5% {
    opacity: 0;
    transform: translateY(7px);
  }
  20.5%,
  31% {
    opacity: 1;
    transform: translateY(0);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-story-row-premium {
  0%,
  25% {
    opacity: 0;
    transform: translateY(8px);
  }
  28%,
  35% {
    opacity: 1;
    transform: translateY(0);
  }
  39%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes ttp-phone-result-cursor {
  0%,
  29.15% {
    opacity: 0;
    transform: translate3d(-36px, 16px, 0) rotate(-6deg) scale(.98);
  }
  29.85%,
  30.55% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  31.05% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  32.6%,
  100% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-result-click-ring {
  0%,
  30.5% {
    opacity: 0;
    transform: scale(.2);
  }
  31.2% {
    opacity: .76;
    transform: scale(1);
  }
  33.7%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-result-added {
  0%,
  31.5% {
    opacity: 0;
    transform: scale(.86);
  }
  33.5%,
  37% {
    opacity: 1;
    transform: scale(1);
  }
  40%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-cursor {
  0%,
  40.05% {
    opacity: 0;
    transform: translate3d(-42px, 14px, 0) rotate(-6deg) scale(.98);
  }
  40.75%,
  41.3% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  41.85% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  43.4%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-save-click-ring {
  0%,
  41.25% {
    opacity: 0;
    transform: scale(.2);
  }
  42% {
    opacity: .76;
    transform: scale(1);
  }
  44.5%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-added-pill-premium {
  0%,
  42.5% {
    opacity: 0;
    transform: scale(.88);
  }
  44.5%,
  52% {
    opacity: 1;
    transform: scale(1);
  }
  56%,
  100% {
    opacity: 0;
    transform: scale(.94);
  }
}

@keyframes ttp-phone-save-nav {
  0%,
  45% {
    opacity: 0;
    transform: translateY(8px) scale(.96);
  }
  47.5%,
  54% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  57%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }
}

@keyframes ttp-phone-waze-cursor {
  0%,
  49.1% {
    opacity: 0;
    transform: translate3d(-42px, 14px, 0) rotate(-6deg) scale(.98);
  }
  49.8%,
  50.45% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  50.95% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  52.4%,
  100% {
    opacity: 0;
    transform: translate3d(24px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-waze-click-ring {
  0%,
  50.35% {
    opacity: 0;
    transform: scale(.2);
  }
  51.2% {
    opacity: .78;
    transform: scale(1);
  }
  53.6%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes ttp-phone-waze-choice {
  0%,
  51% {
    transform: translateY(0) scale(1);
    filter: none;
  }
  53%,
  56% {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 8px 10px rgba(14, 165, 233, .30));
  }
  59%,
  100% {
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes ttp-phone-route-draw {
  0%,
  57% {
    stroke-dashoffset: 520;
  }
  72%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes ttp-phone-real-car-drive {
  0%,
  57% {
    opacity: 0;
    left: 70%;
    top: 17%;
    transform: translate(-50%, -50%) rotate(104deg) scale(.92);
  }
  59% {
    opacity: 1;
    left: 70%;
    top: 17%;
    transform: translate(-50%, -50%) rotate(104deg) scale(1);
  }
  64% {
    opacity: 1;
    left: 62%;
    top: 39%;
    transform: translate(-50%, -50%) rotate(112deg) scale(1);
  }
  69% {
    opacity: 1;
    left: 48%;
    top: 61%;
    transform: translate(-50%, -50%) rotate(124deg) scale(1);
  }
  74% {
    opacity: 1;
    left: 34%;
    top: 86%;
    transform: translate(-50%, -50%) rotate(105deg) scale(1);
  }
  78%,
  100% {
    opacity: 0;
    left: 34%;
    top: 86%;
    transform: translate(-50%, -50%) rotate(105deg) scale(.92);
  }
}

@keyframes ttp-phone-nearby-cursor {
  0%,
  60.15% {
    opacity: 0;
    transform: translate3d(32px, 18px, 0) rotate(-6deg) scale(.98);
  }
  60.85%,
  61.45% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  61.95% {
    opacity: 1;
    transform: translate3d(1px, 1px, 0) rotate(-6deg) scale(.86);
  }
  63.7%,
  100% {
    opacity: 0;
    transform: translate3d(18px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-nearby-click-ring {
  0%,
  61.45% {
    opacity: 0;
    transform: scale(.2);
  }
  62.25% {
    opacity: .72;
    transform: scale(1);
  }
  64.6%,
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes ttp-phone-nearby-checkbox {
  0%,
  62% {
    background: rgba(255, 253, 248, .94);
    border-color: rgba(44, 112, 104, .42);
  }
  64%,
  100% {
    background: #2c7068;
    border-color: #2c7068;
  }
}

@keyframes ttp-phone-nearby-check {
  0%,
  62% {
    opacity: 0;
    transform: rotate(45deg) scale(.6);
  }
  65%,
  100% {
    opacity: 1;
    transform: rotate(45deg) scale(.82);
  }
}

@keyframes ttp-phone-nearby-place-pop {
  0%,
  62.5% {
    opacity: 0;
    transform: translateY(6px) rotate(-45deg) scale(.9);
  }
  64%,
  77% {
    opacity: 1;
    transform: translateY(0) rotate(-45deg) scale(1);
  }
  80%,
  100% {
    opacity: 0;
    transform: translateY(-3px) rotate(-45deg) scale(.96);
  }
}

@keyframes ttp-phone-share-cursor {
  0%,
  79.15% {
    opacity: 0;
    transform: translate3d(36px, 16px, 0) rotate(-6deg) scale(.98);
  }
  79.85% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-6deg) scale(1);
  }
  80.35% {
    opacity: 1;
    transform: translate3d(2px, 2px, 0) rotate(-6deg) scale(.86);
  }
  82.1%,
  100% {
    opacity: 0;
    transform: translate3d(20px, 12px, 0) rotate(-6deg) scale(.98);
  }
}

@keyframes ttp-phone-share-click-ring {
  0%,
  79.85% {
    opacity: 0;
    transform: scale(.2);
  }
  80.65% {
    opacity: .72;
    transform: scale(1);
  }
  83%,
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes ttp-phone-social-composer-stage {
  0%,
  84% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    transform: translateY(-8px) scale(.985);
  }
  86%,
  90.5% {
    opacity: 1;
    max-height: 170px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom-color: rgba(31, 41, 55, .08);
    transform: translateY(0) scale(1);
  }
  92.5%,
  100% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    transform: translateY(-8px) scale(.985);
  }
}

@keyframes ttp-phone-social-type {
  0%,
  85.5% {
    clip-path: inset(0 100% 0 0);
  }
  90.5%,
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes ttp-phone-social-caret {
  0%,
  85.5% {
    opacity: 0;
    transform: translateX(0);
  }
  86% {
    opacity: .8;
  }
  90.5% {
    opacity: .8;
    transform: translateX(116px);
  }
  91.5%,
  100% {
    opacity: 0;
    transform: translateX(116px);
  }
}

@keyframes ttp-phone-social-post-show {
  0%,
  91% {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  93.5%,
  98.6% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(.99);
  }
}

@keyframes ttp-phone-fade-to-black {
  0%,
  97.8% {
    opacity: 0;
  }
  99%,
  100% {
    opacity: 1;
  }
}

/* Phone demo polish: one selectable result, tighter Waze click, and cleaner route discovery. */
.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions {
  position: relative;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b {
  position: relative;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4) {
  padding-right: 70px;
  animation:
    ttp-phone-suggestion-four 38s ease-in-out infinite,
    ttp-phone-suggestion-confirmed 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4)::before {
  animation: ttp-phone-suggestion-confirmed-dot 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4)::after {
  content: "Added";
  position: absolute;
  right: 8px;
  top: 50%;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(44, 112, 104, .12);
  color: #2c7068;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-50%) scale(.88);
  animation: ttp-phone-result-added-row 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions::before {
  content: "";
  position: absolute;
  right: 135px;
  bottom: 13px;
  z-index: 6;
  width: 21px;
  height: 27px;
  background: #172033;
  clip-path: polygon(0 0, 0 100%, 8px 78%, 14px 100%, 20px 97%, 13px 75%, 22px 75%);
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, .22));
  opacity: 0;
  transform-origin: 4px 4px;
  animation: ttp-phone-result-cursor 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions::after {
  content: "";
  position: absolute;
  right: 127px;
  bottom: 5px;
  z-index: 5;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(44, 112, 104, .34);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.2);
  animation: ttp-phone-result-click-ring 38s ease-in-out infinite;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__story-row {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav::before {
  left: calc(50% - 8px);
  top: calc(50% - 4px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav::after {
  left: calc(50% - 16px);
  top: calc(50% - 17px);
  width: 31px;
  height: 31px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-start,
.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end {
  width: 34px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: transparent;
  font-size: 0;
  overflow: visible;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-start {
  left: calc(73% - 8px);
  top: calc(18% - 36px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end {
  left: calc(34% - 8px);
  top: calc(86% - 36px);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-start::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 3px;
  height: 31px;
  border-radius: 999px;
  background: #172033;
  box-shadow: 0 8px 12px rgba(15, 23, 42, .22);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-start::after,
.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 4px;
  width: 25px;
  height: 16px;
  border: 1px solid rgba(255, 253, 248, .82);
  border-radius: 4px 8px 8px 4px;
  box-shadow:
    0 12px 18px rgba(15, 23, 42, .18),
    inset 0 1px 0 rgba(255, 255, 255, .32);
  clip-path: polygon(0 0, 100% 0, 82% 50%, 100% 100%, 0 100%);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-start::after {
  background: linear-gradient(135deg, #2c7068, #39a779);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map i.is-end::after {
  background:
    conic-gradient(#172033 25%, #fffefa 0 50%, #172033 0 75%, #fffefa 0) 0 0 / 8px 8px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-car {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 253, 248, .96);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, .70), transparent 0 22%, transparent 23%),
    linear-gradient(135deg, #172033 0%, #2c7068 100%);
  box-shadow:
    0 14px 24px rgba(15, 23, 42, .28),
    0 0 0 8px rgba(44, 112, 104, .13),
    inset 0 1px 0 rgba(255, 255, 255, .42);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-car::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 0;
  background: #fffefa;
  clip-path: polygon(50% 0, 88% 100%, 50% 76%, 12% 100%);
  transform: translate(-50%, -55%) rotate(42deg);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__map-car::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 112, 104, .18), transparent 65%);
  pointer-events: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot {
  overflow: visible;
  left: var(--flag-x, 50%) !important;
  top: var(--flag-y, 50%) !important;
  right: auto !important;
  bottom: auto !important;
  width: 18px;
  height: 18px;
  border-width: 2px;
  background: var(--flag-color, #dda236);
  box-shadow:
    0 10px 16px rgba(15, 23, 42, .20),
    0 0 0 5px var(--flag-glow, rgba(221, 162, 54, .16));
  opacity: 0;
  animation: none;
  transform: translateY(-14px) rotate(-45deg) scale(.72);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  top: -9px;
  z-index: 1;
  min-width: 0;
  padding: 4px 6px 4px 10px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-left: 3px solid currentColor;
  border-radius: 4px 11px 11px 4px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 10px 18px rgba(15, 23, 42, .16);
  color: var(--flag-color, #172033);
  font-size: 6px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(45deg);
  transform-origin: left center;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-nearby-burst .ttp-home-trip-phone__nearby-dot {
  animation: ttp-phone-nearby-flag-drop 8s cubic-bezier(.2, .9, .3, 1) var(--flag-delay, 0s) both;
}

@keyframes ttp-phone-suggestion-confirmed {
  0%,
  31% {
    border-color: rgba(31, 41, 55, .10);
    background: rgba(255, 253, 248, .70);
    box-shadow: 0 10px 20px rgba(15, 23, 42, .055);
    color: #536072;
  }
  33.5%,
  37% {
    border-color: rgba(44, 112, 104, .24);
    background: rgba(44, 112, 104, .09);
    box-shadow: 0 14px 24px rgba(44, 112, 104, .12);
    color: #172033;
  }
  40%,
  100% {
    border-color: rgba(44, 112, 104, .18);
    background: rgba(44, 112, 104, .06);
    color: #172033;
  }
}

@keyframes ttp-phone-suggestion-confirmed-dot {
  0%,
  31% {
    background: #dda236;
    box-shadow: 0 0 0 3px rgba(221, 162, 54, .12);
  }
  33.5%,
  100% {
    background: #2c7068;
    box-shadow: 0 0 0 3px rgba(44, 112, 104, .14);
  }
}

@keyframes ttp-phone-result-added-row {
  0%,
  31.5% {
    opacity: 0;
    transform: translateY(-50%) scale(.88);
  }
  33.5%,
  37% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  40%,
  100% {
    opacity: 0;
    transform: translateY(-50%) scale(.94);
  }
}

@keyframes ttp-phone-nearby-flag-drop {
  0% {
    opacity: 0;
    transform: translateY(-18px) rotate(-45deg) scale(.68);
  }
  4% {
    opacity: 1;
    transform: translateY(3px) rotate(-45deg) scale(1.08);
  }
  7% {
    opacity: 1;
    transform: translateY(-2px) rotate(-45deg) scale(.96);
  }
  10%,
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-45deg) scale(1);
  }
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle {
  align-items: flex-start;
  gap: 8px;
  max-width: calc(100% - 20px);
  min-height: 42px;
  border-radius: 16px;
  padding: 8px 10px;
  background: rgba(255, 253, 248, .95);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle span {
  display: grid;
  gap: 3px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle span b {
  color: rgba(83, 96, 114, .86);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  text-transform: none;
  white-space: nowrap;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-nearby-burst .ttp-home-trip-phone__nearby-toggle {
  animation: ttp-phone-nearby-toggle-found 8s ease-out both;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-status {
  position: absolute;
  left: 12px;
  top: 60px;
  z-index: 9;
  display: grid;
  min-width: 132px;
  border: 1px solid rgba(31, 41, 55, .10);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 14px 24px rgba(15, 23, 42, .15);
  opacity: 0;
  transform: translateY(-6px) scale(.96);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-status b {
  grid-area: 1 / 1;
  display: block;
  color: #172033;
  font-size: 7px;
  font-weight: 950;
  letter-spacing: .03em;
  line-height: 1;
  opacity: 0;
  white-space: nowrap;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-status .is-found {
  color: #2c7068;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-nearby-burst .ttp-home-trip-phone__nearby-status {
  animation: ttp-phone-nearby-status-shell 8s ease-out both;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-nearby-burst .ttp-home-trip-phone__nearby-status .is-searching {
  animation: ttp-phone-nearby-status-searching 8s ease-out both;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-nearby-burst .ttp-home-trip-phone__nearby-status .is-found {
  animation: ttp-phone-nearby-status-found 8s ease-out both;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-mini-flag {
  width: 13px;
  height: 13px;
  border-width: 2px;
  box-shadow:
    0 8px 14px rgba(15, 23, 42, .18),
    0 0 0 4px var(--flag-glow, rgba(221, 162, 54, .14));
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-mini-flag::before {
  width: 4px;
  height: 4px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-mini-flag::after {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions::before {
  left: calc(50% - 38px);
  top: 19px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions::after {
  left: calc(50% - 43px);
  top: 4px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-page {
  overflow: visible;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post {
  position: relative;
  overflow: visible;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(31, 41, 55, .08);
  padding: 8px 9px 9px;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post footer button {
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(37, 99, 235, .10);
  color: #2563eb;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post footer span {
  color: #536072;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__like-burst {
  position: absolute;
  left: 70px;
  bottom: 14px;
  z-index: 6;
  width: 0;
  height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  pointer-events: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__social-post > .ttp-home-trip-phone__like-burst {
  width: 0;
  height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__like-burst i {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 10px 18px rgba(37, 99, 235, .24);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  opacity: 0;
  transform: translate(0, 0) scale(.68);
}

.ttp-trip-phone-showcase .ttp-home-trip-phone__like-burst i img.emoji {
  width: 13px !important;
  height: 13px !important;
  margin: 0 !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-like-burst .ttp-home-trip-phone__like-burst i {
  animation: ttp-phone-like-float 2.45s cubic-bezier(.16, .8, .28, 1) var(--like-delay, 0s) both;
}

@keyframes ttp-phone-nearby-toggle-found {
  0%,
  34% {
    border-color: rgba(31, 41, 55, .11);
    box-shadow: 0 14px 22px rgba(15, 23, 42, .12);
  }
  42%,
  100% {
    border-color: rgba(44, 112, 104, .26);
    box-shadow:
      0 14px 22px rgba(15, 23, 42, .12),
      0 0 0 5px rgba(44, 112, 104, .10);
  }
}

@keyframes ttp-phone-nearby-status-shell {
  0%,
  14% {
    opacity: 0;
    transform: translateY(-6px) scale(.96);
  }
  20%,
  84% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(.98);
  }
}

@keyframes ttp-phone-nearby-status-searching {
  0%,
  48% {
    opacity: 1;
  }
  58%,
  100% {
    opacity: 0;
  }
}

@keyframes ttp-phone-nearby-status-found {
  0%,
  52% {
    opacity: 0;
  }
  62%,
  100% {
    opacity: 1;
  }
}

@keyframes ttp-phone-like-float {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(.68);
  }
  12% {
    opacity: 1;
    transform: translate(calc(var(--like-x, 0px) * .14), calc(var(--like-y, -80px) * .14)) rotate(calc(var(--like-rotate, 0deg) * .2)) scale(1);
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--like-x, 0px), var(--like-y, -80px)) rotate(var(--like-rotate, 0deg)) scale(1.08);
  }
}

@keyframes ttp-phone-share-scene {
  0%,
  81.5% {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  84.5%,
  99.2% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(.99);
  }
}

@keyframes ttp-phone-social-composer-stage {
  0%,
  84% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    transform: translateY(-8px) scale(.985);
  }
  85.5%,
  88.8% {
    opacity: 1;
    max-height: 170px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom-color: rgba(31, 41, 55, .08);
    transform: translateY(0) scale(1);
  }
  91%,
  100% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    transform: translateY(-8px) scale(.985);
  }
}

@keyframes ttp-phone-social-type {
  0%,
  85% {
    clip-path: inset(0 100% 0 0);
  }
  88.2%,
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes ttp-phone-social-caret {
  0%,
  85% {
    opacity: 0;
    transform: translateX(0);
  }
  85.5% {
    opacity: .8;
  }
  88.2% {
    opacity: .8;
    transform: translateX(236px);
  }
  90%,
  100% {
    opacity: 0;
    transform: translateX(236px);
  }
}

@keyframes ttp-phone-social-post-show {
  0%,
  89.6% {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  91.5%,
  99.2% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(.99);
  }
}

@keyframes ttp-phone-fade-to-black {
  0%,
  98.6% {
    opacity: 0;
  }
  99.4%,
  100% {
    opacity: 1;
  }
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="arrival"] .ttp-home-trip-phone__scene.is-arrival,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="share"] .ttp-home-trip-phone__scene.is-share {
  opacity: 1 !important;
  transform: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="share"] .ttp-home-trip-phone__social-composer p span {
  clip-path: inset(0 0 0 0) !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="share"] .ttp-home-trip-phone__social-composer {
  opacity: 0 !important;
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-bottom-color: transparent !important;
  transform: translateY(-8px) scale(.985) !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="share"] .ttp-home-trip-phone__social-composer p::after {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="share"] .ttp-home-trip-phone__social-post {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual .ttp-home-trip-phone__fade {
  display: none;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="arrival"] .ttp-home-trip-phone__share-actions::before,
.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="arrival"] .ttp-home-trip-phone__share-actions::after {
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__map-car {
  opacity: 1 !important;
  left: 34% !important;
  top: 86% !important;
  animation: none !important;
}

.ttp-trip-phone-showcase .ttp-home-trip-phone.is-manual[data-ttp-phone-step="route"] .ttp-home-trip-phone__nearby-dot {
  opacity: 1 !important;
  transform: translateY(0) rotate(-45deg) scale(1) !important;
  animation: none !important;
}

@media (max-width: 980px) {
  .ttp-trip-phone-showcase .ttp-home-trip-planner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .ttp-trip-phone-showcase .ttp-home-trip-planner {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner__visual {
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone {
    min-height: 580px;
    overflow: hidden;
    animation: ttp-home-phone-mobile-slide 1s cubic-bezier(.2, .75, .2, 1) .25s both;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__device {
    width: min(300px, 86vw);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__menu {
    gap: 4px;
    font-size: 5px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__logo img {
    width: min(130px, 100%);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__status {
    left: 18px;
    right: 18px;
  }
}

@keyframes ttp-home-phone-mobile-slide {
  0% {
    opacity: 0;
    transform: translateX(72px) scale(.96);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Phone-first homepage hero pass. */
.ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero {
  order: -40;
  grid-template-columns: minmax(280px, .58fr) minmax(520px, 1.22fr);
  gap: clamp(26px, 4.6vw, 70px);
  min-height: clamp(640px, 74vh, 820px);
  padding: clamp(30px, 5vw, 62px);
  border-radius: 32px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .78) inset,
    0 38px 90px rgba(15, 23, 42, .16);
}

.ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero::before {
  content: "YOUR PLACES";
  right: -18px;
  bottom: -22px;
  font-size: clamp(96px, 16vw, 218px);
  letter-spacing: .01em;
}

.ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
  max-width: 11ch;
  margin: 14px 0 16px;
  color: #172033;
  font-size: clamp(44px, 6.1vw, 86px);
  font-weight: 950;
  letter-spacing: -.018em;
  line-height: .95;
}

.ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
  max-width: 35ch;
  font-size: clamp(18px, 1.7vw, 22px);
}

.ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone {
  min-height: clamp(650px, 62vw, 780px);
}

.ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone__device {
  width: clamp(316px, 32vw, 412px);
}

.ttp-trip-phone-showcase .ttp-home-stat-strip {
  order: -30;
}

.ttp-trip-phone-showcase .ttp-home-intro {
  order: -20;
}

.ttp-trip-phone-showcase .ttp-home-editorial-note {
  order: -15;
}

.ttp-trip-phone-showcase .ttp-home-hero.is-featured-story {
  order: -10;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  min-height: 0;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 24px;
  background:
    linear-gradient(116deg, rgba(17, 24, 39, .98) 0%, rgba(31, 47, 79, .96) 50%, rgba(248, 251, 255, .96) 50.1%, rgba(255, 250, 243, .97) 100%),
    var(--ttp-night);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .70) inset,
    0 24px 62px rgba(15, 23, 42, .17);
}

.ttp-trip-phone-showcase .ttp-home-hero.is-featured-story .ttp-home-hero__copy {
  padding: clamp(8px, 2vw, 18px);
}

.ttp-trip-phone-showcase .ttp-home-hero.is-featured-story .ttp-home-hero__title {
  max-width: 17ch;
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1;
}

.ttp-trip-phone-showcase .ttp-home-hero.is-featured-story .ttp-home-hero__excerpt {
  display: -webkit-box;
  max-width: 58ch;
  margin-top: 12px;
  overflow: hidden;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ttp-trip-phone-showcase .ttp-home-hero.is-featured-story .ttp-home-actions {
  margin-top: 18px;
}

.ttp-trip-phone-showcase .ttp-home-hero.is-featured-story .ttp-home-hero__media {
  min-height: clamp(220px, 25vw, 360px);
  border-radius: 22px;
  transform: rotate(.15deg);
}

.ttp-trip-phone-showcase .ttp-home-hero.is-featured-story .ttp-home-hero__media img {
  min-height: 0;
  height: 100%;
  aspect-ratio: 16 / 10;
}

@media (max-width: 980px) {
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero,
  .ttp-trip-phone-showcase .ttp-home-hero.is-featured-story {
    grid-template-columns: 1fr;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero {
    min-height: 0;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
    max-width: 12ch;
    font-size: clamp(42px, 9vw, 72px);
  }

  .ttp-trip-phone-showcase .ttp-home-hero.is-featured-story {
    background:
      linear-gradient(180deg, rgba(17, 24, 39, .98), rgba(31, 47, 79, .96)),
      var(--ttp-night);
  }
}

@media (max-width: 700px) {
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero {
    gap: 14px;
    padding: 20px 14px 22px;
    border-radius: 20px;
    overflow: hidden;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
    max-width: 12ch;
    margin: 10px 0 12px;
    font-size: clamp(34px, 10.6vw, 46px);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
    max-width: 30ch;
    font-size: 16px;
    line-height: 1.45;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__mini-list {
    gap: 5px;
    margin-top: 12px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__mini-list span {
    gap: 8px;
    font-size: 10px;
    line-height: 1.25;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__visual {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 540px;
    margin-top: 0;
    overflow: visible;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 540px;
    margin-top: 0;
    overflow: visible;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone__device {
    width: min(250px, 69vw);
    max-width: 100%;
    transform-origin: top center;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene {
    inset: 72px 18px 22px;
    gap: 10px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene span {
    font-size: 8px;
    letter-spacing: .13em;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene strong {
    font-size: clamp(22px, 7.4vw, 30px);
    line-height: .99;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene em {
    font-size: 11px;
    line-height: 1.26;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search {
    inset: 74px 18px 22px;
    align-content: start;
    padding-top: 82px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search > strong {
    font-size: clamp(21px, 7.1vw, 29px);
    line-height: .99;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-save {
    inset: 74px 18px 22px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route {
    inset: 72px 14px 18px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar {
    min-height: 40px;
    padding: 11px 14px 10px 36px;
    font-size: 11px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar b {
    font-size: 10px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar::before {
    left: 15px;
    width: 10px;
    height: 10px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar::after {
    left: 25px;
    top: 24px;
    width: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__web-preview {
    height: 50px;
    border-radius: 12px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions {
    gap: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 8px;
    line-height: 1.06;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4) {
    padding-right: 56px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4)::after {
    right: 6px;
    padding: 5px 6px;
    font-size: 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card b {
    font-size: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i {
    padding: 6px 7px;
    font-size: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nav {
    gap: 8px;
    padding: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nav a {
    width: 34px;
    height: 34px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-alert {
    left: 12px;
    right: 12px;
    top: 40px;
    padding: 8px 9px 9px;
    border-radius: 15px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-meta {
    gap: 6px;
    margin-bottom: 7px;
    font-size: 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-meta b {
    font-size: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body {
    gap: 4px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body i {
    min-width: 25px;
    height: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body i.is-pitt {
    font-size: 12px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body i.is-wvu {
    font-size: 10px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body span {
    max-width: 58px;
    font-size: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body strong {
    font-size: 23px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body em {
    font-size: 15px;
  }

  .ttp-trip-phone-showcase .ttp-home-hero.is-featured-story {
    border-radius: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-hero.is-featured-story .ttp-home-hero__title {
    font-size: clamp(34px, 10vw, 48px);
  }
}

.ttp-trip-phone-showcase .ttp-home-featured-map {
  margin-top: clamp(28px, 4vw, 54px);
}

.ttp-trip-phone-showcase .ttp-home-featured-map__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 28px;
  align-items: center;
  min-height: 190px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(99, 116, 139, .18);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #d99d2b, #7a4737, #315f5d) 1;
  border-radius: 18px;
  color: var(--ttp-ink);
  text-decoration: none;
  background:
    radial-gradient(circle at 82% 14%, rgba(37, 99, 235, .13), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(248, 250, 252, .95)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(31, 41, 55, .035) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(31, 41, 55, .03) 34px 35px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.ttp-trip-phone-showcase .ttp-home-featured-map__card::before {
  content: "";
  position: absolute;
  inset: 26px clamp(26px, 5vw, 70px) 26px auto;
  width: min(34vw, 460px);
  opacity: .16;
  background:
    linear-gradient(135deg, transparent 12%, rgba(49, 95, 93, .72) 12% 16%, transparent 16% 32%, rgba(122, 71, 55, .72) 32% 36%, transparent 36%),
    radial-gradient(circle at 20% 28%, #d99d2b 0 7px, transparent 8px),
    radial-gradient(circle at 56% 58%, #315f5d 0 7px, transparent 8px),
    radial-gradient(circle at 78% 36%, #7a4737 0 7px, transparent 8px);
  pointer-events: none;
}

.ttp-trip-phone-showcase .ttp-home-featured-map__card > * {
  position: relative;
  z-index: 1;
}

.ttp-trip-phone-showcase .ttp-home-featured-map__card .ttp-home-kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: #7a4737;
}

.ttp-trip-phone-showcase .ttp-home-featured-map__card strong {
  display: block;
  max-width: 760px;
  font-size: clamp(34px, 5.8vw, 72px);
  font-weight: 950;
  line-height: .95;
}

.ttp-trip-phone-showcase .ttp-home-featured-map__card em {
  display: block;
  max-width: 640px;
  color: var(--ttp-muted);
  font-size: clamp(17px, 2.2vw, 24px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
}

.ttp-trip-phone-showcase .ttp-home-featured-map__action {
  grid-row: 2 / span 2;
  grid-column: 2;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(23, 32, 51, .14);
  border-radius: 999px;
  background: #172033;
  color: #fffdf7;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}

.ttp-trip-phone-showcase .ttp-home-featured-map__card:hover {
  transform: translateY(-2px);
}

.ttp-archive-featured-map {
  width: min(100%, var(--ttp-wide));
  margin: 0 auto clamp(28px, 4vw, 52px);
}

.ttp-archive-featured-map__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: center;
  padding: clamp(24px, 3.6vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(99, 116, 139, .18);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, #d99d2b, #7a4737, #315f5d) 1;
  border-radius: 18px;
  color: var(--ttp-ink);
  text-decoration: none;
  background:
    radial-gradient(circle at 84% 12%, rgba(221, 162, 54, .18), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(248, 250, 252, .95)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(31, 41, 55, .035) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(31, 41, 55, .03) 34px 35px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
  cursor: pointer;
}

.ttp-archive-featured-map__card::before {
  content: "";
  position: absolute;
  inset: 22px clamp(24px, 5vw, 68px) 22px auto;
  width: min(32vw, 430px);
  opacity: .16;
  background:
    linear-gradient(135deg, transparent 12%, rgba(49, 95, 93, .72) 12% 16%, transparent 16% 32%, rgba(122, 71, 55, .72) 32% 36%, transparent 36%),
    radial-gradient(circle at 20% 28%, #d99d2b 0 7px, transparent 8px),
    radial-gradient(circle at 56% 58%, #315f5d 0 7px, transparent 8px),
    radial-gradient(circle at 78% 36%, #7a4737 0 7px, transparent 8px);
  pointer-events: none;
}

.ttp-archive-featured-map__card > * {
  position: relative;
  z-index: 1;
}

.ttp-archive-featured-map__card .ttp-kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: #7a4737;
}

.ttp-archive-featured-map__card strong {
  display: block;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 950;
  line-height: .95;
}

.ttp-archive-featured-map__card em {
  display: block;
  max-width: 660px;
  color: var(--ttp-muted);
  font-size: clamp(16px, 2vw, 22px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
}

.ttp-archive-featured-map__action {
  position: relative;
  grid-row: 2 / span 2;
  grid-column: 2;
  z-index: 5;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  pointer-events: auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(23, 32, 51, .14);
  border-radius: 999px;
  background: #172033;
  color: #fffdf7;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}

.ttp-archive-featured-map__card:hover {
  transform: translateY(-2px);
}

.ttp-archive-featured-map__card:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .42);
  outline-offset: 5px;
}

@media (max-width: 720px) {
  .ttp-trip-phone-showcase .ttp-home-featured-map__card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ttp-trip-phone-showcase .ttp-home-featured-map__action {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }

  .ttp-archive-featured-map__card {
    grid-template-columns: 1fr;
  }

  .ttp-archive-featured-map__action {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
    font-size: 15px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__visual,
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone {
    min-height: 510px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone__device {
    width: min(236px, 66vw);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene strong {
    font-size: clamp(20px, 7vw, 27px);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search {
    padding-top: 74px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search > strong {
    font-size: clamp(20px, 6.8vw, 26px);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar b {
    font-size: 9px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b {
    min-height: 28px;
    font-size: 7.5px;
  }
}

/* Mobile rescue pass for the animated phone demo. Keep the preview compact and keep click targets honest. */
@media (max-width: 700px) {
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero {
    padding: 18px 12px 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy h1 {
    max-width: 12ch;
    margin: 8px 0 9px;
    font-size: clamp(24px, 7.4vw, 32px);
    line-height: .99;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__copy p:not(.ttp-home-kicker) {
    max-width: 27ch;
    font-size: 12.5px;
    line-height: 1.32;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__mini-list {
    display: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__mini-list span {
    font-size: 8px;
    letter-spacing: .12em;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__visual,
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone {
    min-height: 424px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone__device {
    width: min(198px, 56vw);
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__status {
    left: 16px;
    right: 16px;
    top: 12px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__time {
    font-size: 17px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__browserbar {
    left: 20px;
    right: 20px;
    top: 50px;
    min-height: 25px;
    padding: 5px 10px 5px 30px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__favicon {
    left: 5px;
    width: 19px;
    height: 19px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__browserbar b {
    font-size: 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__web-header {
    left: 28px;
    right: 28px;
    top: 78px;
    min-height: 22px;
    padding: 0 0 4px;
    animation: ttp-phone-mobile-web-header 38s steps(1, end) infinite;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__logo img {
    width: min(90px, 100%);
    max-height: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__logo span {
    font-size: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__menu {
    display: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-alert {
    top: 34px;
    padding: 6px 7px 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body strong {
    font-size: 19px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__score-body em {
    font-size: 12px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene {
    inset: 64px 14px 14px;
    gap: 5px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene span {
    font-size: 6px;
    letter-spacing: .12em;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene strong {
    font-size: clamp(14px, 5.3vw, 20px);
    line-height: 1;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene em {
    font-size: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search {
    inset: 66px 14px 14px;
    gap: 3px;
    padding-top: 34px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search > span {
    display: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-search > strong {
    font-size: clamp(14px, 5vw, 18px);
    line-height: 1;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar {
    min-height: 27px;
    padding: 6px 10px 5px 27px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar b {
    font-size: 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar::before {
    left: 11px;
    width: 8px;
    height: 8px;
    border-width: 1.7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__searchbar::after {
    left: 19px;
    top: 17px;
    width: 4px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__web-preview {
    height: 24px;
    border-radius: 10px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions {
    gap: 3px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b {
    min-height: 18px;
    border-radius: 10px;
    padding: 3px 6px;
    font-size: 5.8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4) {
    padding-right: 44px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions b:nth-child(4)::after {
    right: 5px;
    padding: 4px 5px;
    font-size: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions::before {
    right: 42px;
    bottom: 7px;
    width: 15px;
    height: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__suggestions::after {
    right: 36px;
    bottom: 1px;
    width: 23px;
    height: 23px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-save {
    inset: 78px 14px 14px;
    gap: 5px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview {
    min-height: 60px;
    border-radius: 12px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview img {
    height: 27px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview div {
    padding: 5px 7px 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview span,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini span {
    font-size: 5.8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview strong {
    font-size: 8px;
    line-height: 1.02;
    -webkit-line-clamp: 1;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__post-preview em,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini em {
    font-size: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini {
    gap: 2px;
    border-left-width: 3px;
    border-radius: 12px;
    padding: 6px 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__location-mini strong {
    font-size: 8.5px;
    line-height: 1;
    -webkit-line-clamp: 1;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card {
    border-left-width: 3px;
    border-radius: 12px;
    padding: 7px 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card b,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card span,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i {
    font-size: 6.5px;
    line-height: 1.15;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card i {
    padding: 5px 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card::before {
    right: 25px;
    top: calc(50% + 2px);
    width: 15px;
    height: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__address-card::after {
    right: 18px;
    top: calc(50% - 11px);
    width: 22px;
    height: 22px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nav {
    justify-content: center;
    gap: 9px;
    padding: 6px 8px;
    border-radius: 999px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nav img {
    width: 16px;
    height: 16px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav::before {
    left: calc(50% - 2px);
    top: calc(50% - 1px);
    width: 15px;
    height: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nav.is-save-nav::after {
    left: calc(50% - 11px);
    top: calc(50% - 11px);
    width: 22px;
    height: 22px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route {
    inset: 82px 10px 12px;
    gap: 5px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route > span,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-route > strong {
    display: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__map {
    height: 260px;
    border-radius: 16px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle {
    left: 8px;
    right: 8px;
    top: 8px;
    min-height: 26px;
    padding: 5px 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle em {
    flex-basis: 13px;
    width: 13px;
    height: 13px;
    border-radius: 4px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle small {
    max-width: 130px;
    font-size: 5.8px;
    line-height: 1.05;
    white-space: normal;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle span b {
    display: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle::before {
    left: 14px;
    top: 16px;
    width: 15px;
    height: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-toggle::after {
    left: 4px;
    top: 3px;
    width: 23px;
    height: 23px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-status {
    left: 24px;
    right: 24px;
    top: 58px;
    min-height: 30px;
    padding: 6px 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-status b {
    font-size: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__pin-label {
    max-width: 86px;
    padding: 5px 7px;
    font-size: 5.8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot {
    width: 15px;
    height: 15px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__nearby-dot.is-mobile-extra {
    display: none;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__map-car {
    width: 30px;
    height: 17px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__playback {
    bottom: 12px;
    min-height: 30px;
    gap: 7px;
    padding: 5px 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__playback button {
    flex-basis: 25px;
    width: 25px;
    height: 25px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__playback i {
    min-width: 32px;
    height: 3px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-arrival,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__scene.is-share {
    inset: 78px 14px 14px;
    gap: 5px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__arrival-card img {
    height: 60px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions button {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions::before {
    left: calc(50% - 40px);
    top: 18px;
    width: 15px;
    height: 20px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__share-actions::after {
    left: calc(50% - 46px);
    top: 4px;
    width: 24px;
    height: 24px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page {
    border-radius: 14px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-top {
    gap: 5px;
    padding: 7px 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-top b {
    font-size: 10px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-top span {
    font-size: 5.8px;
    line-height: 1.15;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page article {
    gap: 6px;
    padding: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header {
    gap: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header i,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header i {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    font-size: 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header strong,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header strong {
    font-size: 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer header em,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page header em {
    font-size: 6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer p {
    min-height: 32px;
    border-radius: 11px;
    padding: 7px 8px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer p span {
    font-size: 6.6px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-composer button {
    padding: 6px 9px;
    font-size: 6.5px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page article img {
    height: 58px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page h3 {
    margin: 6px 7px 0;
    font-size: 10px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-post > p,
  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-page p {
    font-size: 7px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-phone__social-post div p {
    padding: 4px 7px 7px;
    font-size: 6px;
  }

  @keyframes ttp-phone-mobile-web-header {
    0%,
    35% {
      opacity: 1;
    }
    36%,
    100% {
      opacity: 0;
    }
  }

  @keyframes ttp-phone-search-scene {
    0%,
    32% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    33%,
    100% {
      opacity: 0;
      transform: translateY(-10px) scale(.99);
    }
  }

  @keyframes ttp-phone-save-scene {
    0%,
    35% {
      opacity: 0;
      transform: translateY(10px) scale(.99);
    }
    36%,
    55% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    56%,
    100% {
      opacity: 0;
      transform: translateY(-10px) scale(.99);
    }
  }

  @keyframes ttp-phone-route-scene {
    0%,
    54.5% {
      opacity: 0;
      transform: translateY(10px) scale(.99);
    }
    55.5%,
    78% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    79%,
    100% {
      opacity: 0;
      transform: translateY(-10px) scale(.99);
    }
  }

  @keyframes ttp-phone-arrival-scene {
    0%,
    78% {
      opacity: 0;
      transform: translateY(10px) scale(.99);
    }
    79%,
    84% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    85%,
    100% {
      opacity: 0;
      transform: translateY(-10px) scale(.99);
    }
  }

  @keyframes ttp-phone-share-scene {
    0%,
    84% {
      opacity: 0;
      transform: translateY(10px) scale(.99);
    }
    85%,
    98.6% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    100% {
      opacity: 0;
      transform: translateY(-8px) scale(.99);
    }
  }
}

@media (max-width: 390px) {
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-planner__visual,
  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone {
    min-height: 410px;
  }

  .ttp-trip-phone-showcase .ttp-home-trip-planner.is-home-hero .ttp-home-trip-phone__device {
    width: min(190px, 54vw);
  }
}

/* Trip Planner placement overrides. */
.ttp-trip-empty-phone {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
}
.ttp-trip-phone-showcase {
  display: grid;
  width: 100%;
  min-height: clamp(440px, 42vw, 640px);
  place-items: center;
}
.ttp-trip-phone-showcase .ttp-home-trip-phone {
  min-height: clamp(430px, 42vw, 630px);
}
.ttp-trip-phone-showcase .ttp-home-trip-phone__device {
  width: clamp(258px, 24vw, 336px);
}
@media (max-width: 900px) {
  .ttp-trip-phone-showcase {
    min-height: 520px;
  }
  .ttp-trip-phone-showcase .ttp-home-trip-phone__device {
    width: min(300px, 76vw);
  }
}
