
#toolset {
	display: none;
}

/* 所有图片统一 iOS-style hover */
.image,
figure,
img {
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.image:hover img,
figure:hover img,
img:hover {
  transform: translateY(-3px) scale(1.02);
}

.image,
figure {
  overflow: hidden;
}

a.ios-link {
  position: relative;
  color: #1d1d1f;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}


a.ios-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

a.ios-link:hover {
  transform: scale(1.02);
  color: #000;
}

a.ios-link:hover::after {
  transform: scaleX(1);
}

/* 全局重置 & iOS原生变量（白灰高级风） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}
:root {
  --ios-gray: #848484;
  --ios-black: #222222;
  --glass-blur: 20px;
  --glass-opacity: 0.3;
  --transition-base: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --nav-shrink-speed: 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* 缩放动画曲线 */
}

/* 导航栏固定容器（避免滚动时导航栏位移） */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  z-index: 999; /* 置顶显示 */
  transition: var(--nav-shrink-speed);
}
/* 滚动时容器同步收窄内边距 */
.nav-container.nav-shrink {
  padding: 0.5rem 0;
}

/* 超透iOS磨砂导航栏容器（基础样式） */
.glass-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: rgba(255, 255, 255, var(--glass-opacity));
  backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(120%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.02),
    0 2px 8px rgba(0, 0, 0, 0.01);
  padding: 0.5rem 2rem; /* 初始内边距 */
  width: fit-content;
  position: relative;
  overflow: hidden;
  /* 核心：缩放动画（所有属性过渡） */
  transition: 
    padding var(--nav-shrink-speed),
    gap var(--nav-shrink-speed),
    border-radius var(--nav-shrink-speed),
    box-shadow var(--nav-shrink-speed);
}

/* 滚动缩窄样式（核心） */
.glass-nav.nav-shrink {
  padding: 0.8rem 1.8rem; /* 缩窄内边距 */
  gap: 1.8rem; /* 缩小元素间距 */
  border-radius: 30px; /* 轻微缩小圆角（更紧凑） */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.015); /* 阴影更轻 */
}

/* Logo样式（带缩放动画） */
.nav-logo {
 
}
.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 99%;
  background: linear-gradient(135deg, #f8f8f8, #eaeaea);
  color: var(--ios-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* Logo缩放动画 */
  transition: 
    width var(--nav-shrink-speed),
    height var(--nav-shrink-speed),
    font-size var(--nav-shrink-speed),
    box-shadow var(--nav-shrink-speed),
    background var(--transition-base);
}
/* 缩窄时Logo变小 */
.glass-nav.nav-shrink .logo-icon {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

/* 核心交互类（通用） */
.glass-interactive {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  
  overflow: hidden;
}

/* 放大版胶囊底（白灰渐变） */
.glass-interactive::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  border-radius: 4px;
 
  transition: 
    width var(--transition-bounce),
    bottom var(--transition-bounce),
    opacity var(--transition-base);
  opacity: 0;
}
.glass-interactive:hover::after {
  bottom: 4px;
  width: 90%;
  opacity: 1;
}
/* 缩窄时胶囊底位置微调 */
.glass-nav.nav-shrink .glass-interactive::after {
  bottom: 2px;
  height: 3px;
}

/* Hover效果（白灰极简交互） */
.nav-link.glass-interactive {
  color: var(--ios-black);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  /* 链接文字/内边距缩放动画 */
  transition: 
    font-size var(--nav-shrink-speed),
    padding var(--nav-shrink-speed),
    color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}
.nav-link.glass-interactive:hover {
  color:  rgba(0,0,0, 0.95);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
/* 缩窄时链接文字/内边距变小 */
.glass-nav.nav-shrink .nav-link.glass-interactive {
  font-size: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 18px;
}
/* 缩窄时hover弹动稍小 */
.glass-nav.nav-shrink .nav-link.glass-interactive:hover {
  transform: translateY(-1px);
}

/* 点击波纹反馈（白灰调） */
.glass-interactive::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 160%;
  height: 160%;
  border-radius: 50%;
  background: rgba(240, 240, 240, 0.4);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 1;
}
.glass-interactive:active::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

/* Logo Hover强化（白灰风） */
.nav-logo.glass-interactive:hover .logo-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #eaeaea, #f8f8f8);
}
/* 缩窄时Logo hover放大稍小 */
.glass-nav.nav-shrink .nav-logo.glass-interactive:hover .logo-icon {
  transform: scale(1.05);
}

/* 导航链接容器（带间距缩放） */
.nav-links {
  display: flex;
  gap: 1.2rem;
  transition: gap var(--nav-shrink-speed);
}
/* 缩窄时间距变小 */
.glass-nav.nav-shrink .nav-links {
  gap: 0.8rem;
}


body {
	background-color: #fff;
	color: #000;
}

a:active {
	opacity: 0.7;
}

.page a.active {
	opacity: .4;
}

i,
em {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

sub,
sup {
	position: relative;
	vertical-align: baseline;
}

sub {
	top: 0.3em;
}

sup {
	top: -0.4em;
}

s {
	text-decoration: line-through;
}

img {
	border: 0;
	padding: 0;
}

ul,
ol {
	margin: 0;
	padding: 0 0 0 2.5em;
}

blockquote {
	margin: 0;
	padding: 0 0 0 2em;
}

hr {
	background: rgba(0, 0, 0, 0.4);
	border: 0;
	height: 1px;
	display: block;
    margin-bottom: 0rem;
}

.content img {
	float: none;
	margin-bottom: .5em;
}

.gallery_image_caption {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: "Monument Grotesk Semi-Mono", Icons;
	font-style: normal;
	line-height: 1.2;	
}

/**
 * Loading Animation
 */

.loading[data-loading] {
	position: fixed;
	bottom: 8px; 
    left: 8px;
}

/**
 * Editor styles
 */

[data-predefined-style="true"] bodycopy {
	font-size: 1.4rem;
	color: rgb(0, 0, 0);
	font-family: "Social Variable", Icons;
	line-height: 1.2;
	font-style: normal;
	font-weight: 350;
	font-variation-settings: 'wdth' 100, 'slnt' 0;
}

[data-predefined-style="true"] bodycopy a {
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
}

[data-predefined-style="true"] bodycopy a:hover {
    color: rgba(#9F9F9F);
}

bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
	border-bottom: 0;
	padding-bottom: 0;
}

[data-predefined-style="true"] h1 {
	font-family: "Social Variable", Icons;
	padding: 0;
	margin: 0;
	font-size: 2.5rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 1);
    letter-spacing: -0.04rem;
	font-style: normal;
	font-weight: 350;
	font-variation-settings: 'wdth' 100, 'slnt' 0;
	}

[data-predefined-style="true"] h1 a {
    border: 0;
	color: rgba(0, 0, 0, 1);
}

[data-predefined-style="true"] h2 {
	font-family: "Social Variable", Icons;
	padding: 0;
	margin: 0;
	color: rgba(0, 0, 0, 1);
	font-size: 2rem;
	line-height: 1.3;
	font-style: normal;
	font-weight: 350;
	font-variation-settings: 'wdth' 100, 'slnt' 0;
	}

[data-predefined-style="true"] h2 a {
    border: 0;
	color: rgb(0, 0, 0);
}

[data-predefined-style="true"] small {
	display: inline-block;
	font-size: 1.7rem;
	line-height: 1.3;
	font-family: "Social Variable", Icons;
	color: rgb(26, 26, 26);
    letter-spacing: 0.05em;
	font-style: normal;
	font-weight: 350;
	font-variation-settings: 'wdth' 100, 'slnt' 0;
}

[data-predefined-style="true"] small a {
    border: 0;
	color: rgb(0, 0, 0);
}

/**
 * Breakpoints
 */


[data-css-preset] .page {
    background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
	position: relative;
	min-height: 10px;
	max-width: 100%;
	width: 100%;
	background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
	margin-left: 0 /*!content_left*/;
	margin-right: auto /*!content_left*/;
	text-align: left /*!text_left*/;
}

[data-css-preset] body {
	background-color: rgb(255, 255, 255) /*!body_bgcolor*/;
}

[data-css-preset] .container_width {
	width: 100% /*!content_left*/;
}

[data-css-preset] .content_padding {
	padding-top: 2rem /*!main_margin*/;
	padding-bottom: 2rem /*!main_margin*/;
	padding-left: 2rem /*!main_margin*/;
	padding-right: 2rem /*!main_margin*/;
}


[data-css-preset] text-limit {
	display: inline-block /*!text_width*/;
	max-width: 66rem/*!text_width*/;
}

/**
 * Thumbnails
 */

div[thumbnails] {
	justify-content: flex-start;
}

[data-css-preset] .thumbnails {
   	background-color: transparent/*!thumbnails_bgcolor*/;   
}

[data-css-preset] .thumbnails_width {
    width: 100%/*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
    padding: 0.75rem/*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
    margin: -1.5rem/*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
    padding: 0.1875rem/*!responsive_thumbnails_padding*/; 
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
    margin: -0.375rem/*!responsive_thumbnails_padding*/; 
}

.thumbnails .thumb_image {
	outline: 0px solid rgba(0,0,0,.12);
    outline-offset: -1px;
}

.thumbnails .title {
    margin-top: 1.2rem;
    margin-bottom: .3rem;
    font-size: 1.3rem;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.85);
	font-family: Diatype, Icons;
	font-style: normal;
	line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.thumbnails .tags {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.85);
	font-family: "Monument Grotesk Semi-Mono", Icons;
	font-style: normal;
	line-height: 1.2;
}

.thumbnails .tags a {
	border-bottom: 0;
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
}

.thumbnails .has_title .tags {
	margin-top: 0rem;
}

/**
 * Site Menu Button
 */

[data-css-preset] #site_menu_button {
    color: rgba(0, 0, 0, 0.75);
    line-height: 1;
    font-size: 28px /*!site_menu_button*/;
    padding: 11px;
    line-height: 1;
    background: rgba(33, 32, 46, 0);
    position: fixed;
    top: 1.0rem /*!site_menu_button*/;
	right: 1.2rem /*!site_menu_button*/;
}

body.mobile #site_menu_button {
	margin: -10px;
    font-size: 28px;
}

#site_menu_button.custom_icon {
	width: 40px;
    height: auto;
}

#site_menu_button.active {
	display: none;
}

/**
 * Site Menu
 */

#site_menu {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
	background: rgba(20, 20, 20, 0.95);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	padding: 20px 30px 90px 30px;
	max-width: 400px;
	min-width: 300px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
}

body.mobile #site_menu {
	width: 100%;
}

#site_menu .page-link a {
	color: rgba(255, 255, 255, 0.75);
}

#site_menu .set-link > a {
	color: rgba(255, 255, 255, 0.75);
	font-weight: bold;
}

#site_menu a:active {
	opacity: .7;
}

#site_menu a.active {
	opacity: .4;
}

#site_menu .close {
	display: none;
	color: rgba(255, 255, 255, 0.4);
	line-height: .85em;
	font-size: 45px;
}

body.mobile #site_menu .close {
	display: block;
	font-size: 50px;
	line-height: 1em;
}

#site_menu .break {
	height: 28px;
}

#site_menu .indent {
	margin-left: 28px;
}

/*
 * Shop Button
 */

[data-css-preset] #shop_button {
	color: rgba(0, 0, 0, 0.85);
    background: transparent;
	font-size: 32px;
    font-style: normal;
	font-weight: 400;
    line-height: 1;
    position: fixed;
	padding: 6px;
	top: 2rem /*!shop_button*/;
	right: 2rem /*!shop_button*/;
}

#shop_button.text {
	font-family: Diatype, Icons;
	font-size: 1.3rem;
    padding: 0;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.85);
	font-style: normal;
}

#shop_button.custom_icon {
	width: 40px;
    height: auto;
}

body.mobile #shop_button:not(.text) {
	margin: -6px;
    font-size: 36px;
}

/*
 * Shop Product Widget
 */

.shop_product {
    width: 100%;
	max-width: 22rem;
    position: relative;
    display: block;
}

.shop_product .price {
	font-family: Diatype, Icons;
	font-size: 1.3rem;
	line-height: 1.2;
	color: rgba(0, 0, 0, 0.85);
    display: block;
    margin-bottom: 1rem;
	font-style: normal;
	font-weight: 500;
}

.shop_product .dropdown {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif", Icons;
    font-size: 1.3rem;
    display: inline-block;
	width: 100%;
    border: 1px solid rgba(0,0,0,.2);
    background:  white url(https://static.cargo.site/assets/images/select-line-arrows.svg) no-repeat right;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding: .7rem 3rem 0.8rem 1rem;
	font-style: normal;
	font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
}

.shop_product .button {
	font-family: Diatype, Icons;
	font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255,255,255,1);
    flex: 0 0 50%;
    text-align: left;
    display: inline-block;
	line-height: 1.3;
    padding: .8rem 1rem;
	font-style: normal;
	font-weight: 500;
}

/*
 * Image Zoom
 */

.content img.image-zoom:active {
  opacity: .7;
}

/**
 * Quick View
 */

[data-css-preset] .quick-view {
    padding-top: 2.5rem /*!quick_view_padding*/;
    padding-bottom: 2.5rem /*!quick_view_padding*/;
    padding-left: 2.5rem /*!quick_view_padding*/;
    padding-right: 2.5rem /*!quick_view_padding*/;
    height: 100% /*!quick_view_height*/;
    width: 100% /*!quick_view_width*/;
}

body.mobile .quick-view {
    width: 100%;
    height: 100%;
    margin: 0;
}

[data-css-preset] .quick-view-background {
	background: rgb(255, 255, 255) /*!quick_view_bgcolor*/;
}

.quick-view-caption {
	font-family: "Monument Grotesk Semi-Mono", Icons;
    transition: 100ms opacity ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 3.5rem 0;
    text-align: center;
    font-size: 1.1rem;
	font-style: normal;
	font-weight: 400;
}

.quick-view-caption span {
    padding: 0.5rem 1rem;
    display: inline-block;
    background: rgba(0,0,0,0.5);
    color: white;
}


/**
 * Quick View Navigation 
 */

.quick-view-navigation .left-arrow {
    left: 10px;
}

.quick-view-navigation .right-arrow {
    right: 10px;
}

.quick-view-navigation .left-arrow,
.quick-view-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color {
    stroke: #fff;
    stroke-width: 0px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.85);
    stroke-width: 2px;
}

.quick-view-navigation .close-button {  
    top: 10px;
    right: 10px;
    /* Change height/width together to scale */
    width: 36px;
    height: 36px;
}

.quick-view-navigation .close-button .inner-color {
    stroke: #fff;
    stroke-width: 0px;
}

.quick-view-navigation .close-button .outer-color {
    stroke: rgba(0, 0, 0, 0.85);
    stroke-width: 2px;
}

/** 
 * Image Gallery Navigation Arrows 
 */
 
.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow {
    /* Change height/width together to scale */
    height: 36px;
    width: 36px;
}

.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color {
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 1.5px;
}

.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}

/**
 * Wallpaper Backdrop Navigation Arrows 
 */

.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
   /* Change height/width together to scale */
   width: 36px;
   height: 36px;
}

.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
   stroke: rgba(255, 255, 255, 1);
   stroke-width: 1.5px;
}

.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
    stroke: rgba(0, 0, 0, 0.6);
    stroke-width: 2.5px;
}


/**
 * Feed
 */

.feed .content_container .page {
    border-top: 0px dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
	border-top: 0;
}


/*
 * Audio Player
 */

.audio-player {
    max-width: 36rem;
    height: 3.3rem;
    outline: 1px solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.85);
    background: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
	font-family: Diatype, Icons;
    font-style: normal;
    font-weight: 500;
    text-align: left;
    margin: 1px 1px 1em 1px;
}

body.mobile .audio-player {
    max-width: 100%;
}

.audio-player .separator {
    width: 1px;
    background-color: rgba(0,0,0,0.15);
}

.audio-player .button {
    background: transparent;
    cursor: pointer;
    fill: rgba(0, 0, 0, 0.85);
}

.audio-player .icon {
    fill: rgba(0, 0, 0, 0.85);
    padding: 30%;
    width: 100%;
    margin: auto;
}

.audio-player .buffer {
    background: rgba(0,0,0,0.03);
}

.audio-player .progress {
    background: rgba(0,0,0,0.1);
}

.audio-player .progress-indicator {
    border: 1px solid rgba(0, 0, 0, 0.7);
    width: 1px;
    height: 100%;
    right: 0;
    position: absolute;
    cursor: ew-resize;
}

.audio-player .note-icon {
    height: 100%;
    width: 3.8rem;
    padding: 1rem;
    fill: rgba(0, 0, 0, 0.5);
}

.audio-player .current-time {
    padding-left: 1rem;
}

.audio-player .total-time {
    padding-right: 1rem;
}

.cycle_content {
    opacity: 0;
    white-space: nowrap;
    display: inline-block;
    pointer-events: none;
}
 
.cycle_container {
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 1rem;
    color:#fff;
    line-height: 1 !important;
}

.flier {
	pointer-events: none;
}

.flier > * {
/* Adjust animation duration to change the element’s speed */
        animation: fly 50s linear infinite;
        pointer-events: none !important;
	top: 0;
	left: 0;
	transform: translateX(-120%) translateY(-120%) rotateZ(0);
	position: fixed;
	animation-delay: 1s;
	z-index: 999999;
}

 /* Keyframe values control where the element will begin
    and end its trajectory across the screen. Each rule
    represents a path the element follows across the screen. */


@keyframes fly {

	98.001%, 0% {
                display: block;
		transform: translateX(-200%) translateY(100vh) rotateZ(0deg)
	}

	15% {
		transform: translateX(100vw) translateY(-100%) rotateZ(180deg)
	}

	15.001%, 18% {
		transform: translateX(100vw) translateY(-30%) rotateZ(0deg)
	}

	40% {
		transform: translateX(-200%) translateY(3vh) rotateZ(-180deg)
	}

	40.001%, 43% {
		transform: translateX(-200%) translateY(-100%) rotateZ(-180deg)
	}

	65% {
		transform: translateX(100vw) translateY(50vh) rotateZ(0deg)
	}

	65.001%, 68% {
		transform: translateX(20vw) translateY(-200%) rotateZ(180deg)
	}

	95% {
		transform: translateX(10vw) translateY(100vh) rotateZ(0deg)
	}
}

/* =======================
   Hero 容器
======================= */
.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-radius: 28px;
}


/* =======================
   背景层
======================= */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---- 空间雾 ---- */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(180,180,180,0.35), transparent 60%),
    radial-gradient(50% 60% at 80% 40%, rgba(220,220,220,0.25), transparent 65%),
    radial-gradient(70% 70% at 50% 80%, rgba(200,200,200,0.3), transparent 70%);
  filter: blur(120px);
  animation: liquidMove 30s ease-in-out infinite;
}

/* ---- 噪点层 ---- */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255,255,255,0.25) 45%,
      transparent 70%
    );
  filter: blur(80px);
  opacity: 0.8;
  animation: lightDrift 60s linear infinite;
}


/* =======================
   动画
======================= */
@keyframes liquidMove {
  0% {
    transform: translate(0%, 0%) scale(1);
  }
  50% {
    transform: translate(-10%, 8%) scale(1.5);
  }
  100% {
    transform: translate(5%, -6%) scale(1);
  }
}
@keyframes lightDrift {
  from {
    transform: translateX(-20%) translateY(0);
  }
  to {
    transform: translateX(20%) translateY(-10%);
  }
}

.dot-container {
  display: flex;
  justify-content: center; /* 水平居中 */
  margin-top: 20px;
}
 /* 小圆圈 */
  .breathing-dot {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6); /* 半透明圆圈，更像 iOS */
    animation: breathe 4s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.breathing-dot::after {
    content: '';
     position: absolute;
  
    width: 8px;
    height: 8px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg); /* 45度旋转形成向下箭头 */
    display: block;
  }

  /* 呼吸动画 */
  @keyframes breathe {
    0%, 100% {
      transform: scale(1);
      opacity: 0.4;
    }
    50% {
      transform: scale(1.4);
      opacity: 1;
    }
  }

.wave-text {
  background: linear-gradient(
    90deg,
    #111 0%,
    #555 50%,
    #111 100%
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wave-text:hover {
  animation: text-shimmer 1s ease-out;
}

@keyframes text-shimmer {
  from {
    background-position: 0%;
  }
  to {
    background-position: 200%;
  }
}

.flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate(-10%, -10%);
  pointer-events: none;
}

.flow-lines path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.28);
  stroke-width: 1;
  stroke-dasharray: 900;
  animation: lineFlow linear infinite;
}


@keyframes lineFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -800;
  }
}

.flow-lines path:nth-child(1) {
  opacity: 0.15;
  animation-duration: 26s;
}
.flow-lines path:nth-child(2) {
  opacity: 0.25;
  animation-duration: 22s;
}
.flow-lines path:nth-child(3) {
  opacity: 0.35;
  animation-duration: 18s;
}
.flow-lines path:nth-child(4) {
  opacity: 0.45;
  animation-duration: 14s;
}

.flow-lines {
  filter: blur(0.6px);
  mix-blend-mode: multiply;
}

.flow-lines {
  animation: svgDrift 40s ease-in-out infinite alternate;
}

@keyframes svgDrift {
  from {
    transform: translate(-10%, -12%);
  }
  to {
    transform: translate(-10%, -6%);
  }
}