:root {
  --hero-frame-ink: rgba(93, 98, 112, 0.9);
  --hero-frame-line: rgba(134, 139, 152, 0.12);
  --hero-frame-shell: #d8d8e1;
  --hero-frame-address: rgba(222, 223, 232, 0.78);
  --hero-frame-stage-base: #e4e3e4;
}

.hero-browser-frame-wrap {
  position: relative;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.hero-browser-frame-wrap.is-asset-pending {
  visibility: hidden;
  pointer-events: none;
}

.hero-browser-frame-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 340ms ease, filter 340ms ease;
}

.hero-browser-frame-link:hover,
.hero-browser-frame-link:focus-visible {
  transform: translateY(-4px);
}

.hero-browser-frame-link:focus-visible {
  outline: none;
}

.hero-browser-frame {
  position: relative;
  padding: 10px 12px 20px;
}

.hero-browser-frame__shadow {
  position: absolute;
  inset: 18px 18px -8px;
  border-radius: 26px;
  background:
    radial-gradient(ellipse at center, rgba(56, 67, 96, 0.12) 0%, rgba(44, 54, 80, 0.08) 46%, rgba(44, 54, 80, 0.015) 76%),
    linear-gradient(180deg, rgba(58, 67, 95, 0.05), rgba(40, 49, 78, 0.1));
  filter: blur(20px);
  opacity: 0.46;
  pointer-events: none;
}

.hero-browser-frame__shell {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  background:
    radial-gradient(120% 105% at 22% 18%, rgba(223, 224, 238, 0.82) 0%, rgba(223, 224, 238, 0.38) 28%, rgba(223, 224, 238, 0) 58%),
    radial-gradient(120% 105% at 79% 22%, rgba(237, 234, 221, 0.8) 0%, rgba(237, 234, 221, 0.4) 28%, rgba(237, 234, 221, 0) 58%),
    radial-gradient(44% 34% at 51% 60%, rgba(246, 241, 232, 0.16) 0%, rgba(246, 241, 232, 0) 72%),
    linear-gradient(90deg, rgba(227, 227, 234, 0.98) 0%, rgba(229, 228, 226, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    -3px 11px 50px rgb(208 214 234 / 8%),
    0 8px 14px rgba(33, 43, 72, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.hero-browser-frame__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(104deg, transparent 18%, rgba(255, 255, 255, 0.34) 42%, transparent 60%);
  opacity: 0;
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 0;
}

.hero-browser-frame-link:hover .hero-browser-frame__shell::after,
.hero-browser-frame-link:focus-visible .hero-browser-frame__shell::after {
  opacity: 1;
  animation: hero-frame-shimmer 3800ms ease;
}

.hero-browser-frame__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 34px;
  padding: 7px 14px 6px;
  border-bottom: 1px solid rgba(134, 139, 152, 0.08);
  background: transparent;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  z-index: 1;
}

.hero-browser-frame__toolbar-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.hero-browser-frame__toolbar-group--left {
  gap: 7px;
  justify-self: start;
}

.hero-browser-frame__toolbar-group--right {
  justify-self: end;
}

.hero-browser-frame__traffic {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-right: 6px;
}

.hero-browser-frame__traffic-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(150, 153, 166, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-browser-frame__traffic-dot--red {
  background: rgba(150, 153, 166, 0.72);
}

.hero-browser-frame__traffic-dot--amber {
  background: rgba(150, 153, 166, 0.72);
}

.hero-browser-frame__traffic-dot--green {
  background: rgba(150, 153, 166, 0.72);
}

.hero-browser-frame__toolbar-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: 0.68;
}

.hero-browser-frame__toolbar-icon--sidebar {
  width: 17px;
  height: 17px;
  margin-right: 5px;
}

.hero-browser-frame__toolbar-icon--muted {
  opacity: 0.36;
}

.hero-browser-frame__toolbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: default;
}

.hero-browser-frame__address {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 24px;
  margin: 0 auto;
  padding: 0 16px;
  width: fit-content;
  max-width: min(100%, 420px);
  min-width: 0;
  border-radius: 999px;
  background: var(--hero-frame-address);
  box-shadow: inset 0 0 0 1px rgba(121, 126, 145, 0.1);
  justify-self: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.hero-browser-frame__toolbar--story {
  grid-template-columns: 1fr;
  padding: 8px 10px 7px;
}

.hero-browser-frame__address--story {
  width: 100%;
  max-width: none;
  justify-content: flex-start;
}

.hero-browser-frame__address--story .hero-browser-frame__address-icon--link {
  display: none;
}

.hero-browser-frame__viewport--story {
  padding: 0 8px 0;
}

.hero-browser-frame__dynamic--story {
  min-height: 604px;
  max-height: 700px;
  height: clamp(604px, 76vh, 700px);
}

.hero-browser-frame__address:hover,
.hero-browser-frame__address:focus-visible {
  text-decoration: none;
}

.hero-browser-frame__address-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  opacity: 0.65;
}

.hero-browser-frame__address-icon--link {
  width: 15px;
  height: 15px;
}

.hero-browser-frame__address-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 2px;
  color: var(--hero-frame-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-browser-frame__viewport {
  position: relative;
  padding: 0 8px 8px;
  background: transparent;
  z-index: 1;
}

.hero-browser-frame__viewport::before {
  display: none;
}

.hero-browser-frame__viewport-surface {
  display: none;
}

.hero-browser-frame__dynamic {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(217, 218, 225, 0.72);
}

.hero-browser-frame__dynamic-frame {
  display: block;
  color: inherit;
  text-decoration: none;
}

html.preview-camera-transition-pending,
html.preview-camera-transition-pending body {
  overscroll-behavior: none;
}

.hero-browser-frame-wrap.is-camera-source {
  pointer-events: none;
}

.hero-browser-frame-wrap.is-camera-source .hero-browser-frame__shell {
  opacity: 0;
}

.hero-browser-frame__dynamic.is-camera-dimming {
  transition: opacity 200ms ease;
  opacity: 0;
  filter: none;
}

.hero-browser-frame-camera {
  position: fixed;
  inset: 0;
  z-index: 2147482400;
  pointer-events: none;
}

.hero-browser-frame-camera::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.72), rgba(247, 248, 250, 0.94) 54%, rgba(238, 240, 243, 0.98));
  opacity: 0;
  transition: opacity 320ms ease;
}

.hero-browser-frame-camera.is-active::before {
  opacity: 1;
}

.hero-browser-frame-camera__shell {
  position: absolute;
  left: var(--camera-shell-left);
  top: var(--camera-shell-top);
  width: var(--camera-shell-width);
  height: var(--camera-shell-height);
  border-radius: var(--camera-shell-radius, 12px);
  overflow: hidden;
  transform-origin: center center;
  transition:
    left 760ms cubic-bezier(0.2, 0.78, 0.16, 1),
    top 760ms cubic-bezier(0.2, 0.78, 0.16, 1),
    width 760ms cubic-bezier(0.2, 0.78, 0.16, 1),
    height 760ms cubic-bezier(0.2, 0.78, 0.16, 1),
    border-radius 760ms cubic-bezier(0.2, 0.78, 0.16, 1),
    box-shadow 760ms ease,
    filter 760ms ease,
    opacity 320ms ease;
  box-shadow:
    0 30px 80px rgba(25, 32, 46, 0.18),
    0 16px 30px rgba(25, 32, 46, 0.1);
}

.hero-browser-frame-camera.is-zooming .hero-browser-frame-camera__shell {
  left: -10vw;
  top: -10vh;
  width: 120vw;
  height: 120vh;
  border-radius: 26px;
  box-shadow:
    0 36px 110px rgba(25, 32, 46, 0.2),
    0 24px 50px rgba(25, 32, 46, 0.12);
}

.hero-browser-frame-camera__shell .hero-browser-frame__dynamic {
  transition:
    opacity 200ms ease,
    filter 200ms ease,
    transform 760ms cubic-bezier(0.2, 0.78, 0.16, 1);
  transform-origin: center center;
  background: #ffffff;
}

.hero-browser-frame-camera.is-active .hero-browser-frame-camera__shell .hero-browser-frame__dynamic {
  opacity: 1;
  filter: none;
}

.hero-browser-frame-camera.is-fading .hero-browser-frame-camera__shell .hero-browser-frame__dynamic,
.hero-browser-frame-camera.is-zooming .hero-browser-frame-camera__shell .hero-browser-frame__dynamic {
  opacity: 0;
  filter: none;
}

html[data-mode="custom"] .hero-browser-frame__dynamic .saas-live-hero-viewport,
html[data-mode="custom"] .hero-browser-frame__dynamic .saas-dynamic-hero-viewport {
  width: 100%;
}

html[data-mode="custom"] .hero-browser-frame__dynamic .saas-live-hero-preview,
html[data-mode="custom"] .hero-browser-frame__dynamic .saas-dynamic-hero-preview {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: none;
}

html[data-mode="custom"] .hero-browser-frame__dynamic .saas-live-hero-preview .site-header,
html[data-mode="custom"] .hero-browser-frame__dynamic .saas-dynamic-hero-preview .site-header {
  position: relative;
}

@keyframes hero-frame-shimmer {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 1200px) {
  .hero-browser-frame__toolbar {
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .hero-browser-frame-wrap {
    width: calc(100% + 12px);
    margin-left: -6px;
    margin-right: -6px;
  }

  .hero-browser-frame-link {
    pointer-events: auto;
    cursor: default;
  }

  .hero-browser-frame-link:hover,
  .hero-browser-frame-link:focus-visible {
    transform: none;
  }

  .hero-browser-frame {
    padding: 8px 8px 10px;
  }

  .hero-browser-frame__shadow {
    inset: 14px 12px -6px;
    filter: blur(24px);
  }

  .hero-browser-frame__toolbar {
    display: none;
  }

  .hero-browser-frame__viewport {
    padding: 6px;
  }
}

@media (max-width: 640px) {
}
