:root {
  color-scheme: dark;
  --obsidian: #020205;
  --obsidian-soft: #080811;
  --white: #f7f8ff;
  --muted: rgba(235, 238, 255, 0.66);
  --blue: #00a8ff;
  --blue-hot: #33d6ff;
  --violet: #8a2cff;
  --violet-hot: #c45cff;
  --glass: rgba(15, 16, 34, 0.44);
  --glass-strong: rgba(12, 12, 28, 0.78);
  --line: rgba(135, 168, 255, 0.2);
  --shadow-blue: 0 0 42px rgba(0, 168, 255, 0.25);
  --shadow-violet: 0 0 54px rgba(138, 44, 255, 0.28);
  --header-height: 76px;
  --pointer-x: 50%;
  --pointer-y: 36%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--obsidian);
  scrollbar-color: var(--violet) var(--obsidian);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--obsidian);
  color: var(--white);
  font-family: Tahoma, Arial, Helvetica, sans-serif;
}

body.vortex-locked {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  border: 0;
}

button,
select {
  cursor: pointer;
}

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

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

::selection {
  background: var(--violet);
  color: var(--white);
}

.neon-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(0, 168, 255, 0.07), transparent 34%),
    linear-gradient(310deg, rgba(138, 44, 255, 0.1), transparent 42%),
    #020205;
}

.neon-flow {
  position: absolute;
  inset: -42%;
  background:
    conic-gradient(
      from 210deg at var(--pointer-x) var(--pointer-y),
      transparent 0 18%,
      rgba(0, 168, 255, 0.28) 25%,
      transparent 34% 48%,
      rgba(138, 44, 255, 0.32) 58%,
      transparent 70% 100%
    );
  filter: blur(72px) saturate(1.5);
  opacity: 0.72;
  animation: fieldDrift 18s ease-in-out infinite alternate;
}

.neon-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(118, 141, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 141, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 72%, transparent);
  opacity: 0.4;
  transform: perspective(700px) rotateX(66deg) scale(1.7) translateY(20%);
  transform-origin: center bottom;
}

.platform {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.vortex {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #010103;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.vortex::before,
.vortex::after {
  content: "";
  position: absolute;
  inset: -30%;
  border-radius: 50%;
}

.vortex::before {
  background: conic-gradient(
    from 45deg,
    transparent 0 20%,
    rgba(0, 168, 255, 0.9) 26%,
    transparent 33% 54%,
    rgba(138, 44, 255, 0.92) 62%,
    transparent 70% 100%
  );
  filter: blur(68px);
  animation: vortexSpin 2.8s linear infinite;
}

.vortex::after {
  inset: 12%;
  background: radial-gradient(circle, transparent 0 22%, rgba(0, 0, 0, 0.92) 50%, transparent 74%);
  animation: vortexBreath 1.3s ease-in-out infinite alternate;
}

.vortex-current {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    ellipse at center,
    transparent 0 28px,
    rgba(88, 118, 255, 0.12) 30px,
    transparent 33px 56px
  );
  transform: scale(1.35);
  animation: currentRush 1.1s linear infinite;
}

.vortex-gate {
  position: relative;
  z-index: 2;
  width: 204px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: rgba(6, 7, 18, 0.72);
  color: var(--white);
  box-shadow:
    inset 0 0 32px rgba(0, 168, 255, 0.17),
    0 0 80px rgba(138, 44, 255, 0.36),
    0 0 120px rgba(0, 168, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  isolation: isolate;
}

.vortex-gate::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
}

.vortex-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(74, 195, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  animation: ringPulse 1.8s ease-out infinite;
}

.ring-two {
  animation: ringPulse 1.8s 0.6s ease-out infinite;
}

.ring-three {
  animation: ringPulse 1.8s 1.2s ease-out infinite;
}

.vortex-letter {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 1;
  text-shadow: 0 0 22px rgba(72, 204, 255, 0.72), 0 0 45px rgba(138, 44, 255, 0.72);
}

.vortex-enter {
  position: absolute;
  bottom: 42px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
}

.vortex-rights {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  text-align: center;
}

.vortex.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 14px;
  right: 18px;
  left: 18px;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(150, 180, 255, 0.17);
  border-radius: 38px;
  background: rgba(5, 6, 16, 0.5);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.brand-signal {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-monogram {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.24), rgba(138, 44, 255, 0.28));
  border: 1px solid rgba(126, 206, 255, 0.4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  box-shadow: inset 0 0 20px rgba(0, 168, 255, 0.15), var(--shadow-blue);
}

.brand-name {
  background: linear-gradient(90deg, var(--blue-hot), #ffffff 46%, var(--violet-hot));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  animation: brandShine 4s linear infinite;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transition: width 0.25s ease, right 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
  width: 100%;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 90px;
  min-height: 44px;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
}

.language-switch span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.language-switch .language-active {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  box-shadow: 0 0 18px rgba(0, 168, 255, 0.28);
}

.order-orb {
  position: relative;
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #050509;
  font-size: 1.35rem;
}

.order-orb strong {
  position: absolute;
  top: -3px;
  left: -3px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--violet);
  color: var(--white);
  font-size: 0.62rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 7% 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 24%;
  right: 8%;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(64, 198, 255, 0.7), transparent);
  box-shadow: 0 0 22px rgba(0, 168, 255, 0.75);
}

.hero-echo {
  position: absolute;
  inset-inline-start: -18px;
  bottom: -38px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(113, 140, 255, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16rem;
  line-height: 0.75;
  pointer-events: none;
  user-select: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(660px, 58%);
}

.signal-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--blue-hot);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.signal-line span {
  width: 42px;
  height: 1px;
  background: var(--blue-hot);
  box-shadow: 0 0 14px var(--blue);
}

.hero h1 {
  display: grid;
  gap: 8px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.5rem;
  font-weight: 500;
  line-height: 0.82;
}

.hero h1 > span {
  background: linear-gradient(100deg, #ffffff 0 30%, var(--blue-hot) 52%, var(--violet-hot) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 168, 255, 0.16));
}

.hero h1 small {
  color: rgba(255, 255, 255, 0.88);
  font-family: Tahoma, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.hero-copy > p:not(.signal-line) {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.flow-link {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(112, 205, 255, 0.34);
  border-radius: 30px 12px 30px 30px;
  background: rgba(8, 12, 27, 0.36);
  box-shadow: inset 0 0 18px rgba(0, 168, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.flow-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(0, 168, 255, 0.18), rgba(138, 44, 255, 0.18), transparent);
  transform: translateX(110%);
  transition: transform 0.45s ease;
}

.flow-link:hover,
.flow-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(143, 83, 255, 0.74);
  box-shadow: var(--shadow-violet);
}

.flow-link:hover::before,
.flow-link:focus-visible::before {
  transform: translateX(-110%);
}

.flow-link i {
  color: var(--blue-hot);
  font-size: 1.2rem;
  font-style: normal;
}

.hero-silhouettes {
  position: absolute;
  z-index: 2;
  top: 102px;
  right: 42%;
  bottom: 24px;
  left: 1%;
  perspective: 1200px;
  pointer-events: none;
}

.silhouette {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: transparent;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.48));
  animation: silhouetteFloat 7s ease-in-out infinite alternate;
}

.silhouette img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: radial-gradient(ellipse 69% 88% at 50% 50%, #000 58%, rgba(0, 0, 0, 0.9) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 69% 88% at 50% 50%, #000 58%, rgba(0, 0, 0, 0.9) 72%, transparent 100%);
  filter: saturate(0.84) contrast(1.08) brightness(0.78);
}

.silhouette-a {
  z-index: 2;
  top: 12%;
  left: 0;
  width: 39%;
  height: 82%;
  transform: rotateY(9deg) rotateZ(-2deg);
}

.silhouette-b {
  z-index: 3;
  top: 0;
  left: 28%;
  width: 42%;
  height: 94%;
  animation-delay: -2.8s;
}

.silhouette-c {
  z-index: 1;
  top: 9%;
  right: 0;
  width: 39%;
  height: 84%;
  transform: rotateY(-8deg) rotateZ(2deg);
  animation-delay: -4.6s;
}

.hero-index {
  position: absolute;
  z-index: 5;
  right: 7%;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
}

.hero-index i {
  width: 96px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.hero-index i::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: var(--blue-hot);
  box-shadow: 0 0 10px var(--blue);
  animation: indexFlow 3s ease-in-out infinite alternate;
}

.collection,
.tiktok-zone,
.order-zone {
  position: relative;
  min-height: 100svh;
  padding: 112px 5% 76px;
}

.section-intro {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  max-width: 1500px;
  margin: 0 auto 48px;
}

.section-number {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.74rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-hot);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-intro h2,
.tiktok-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.06;
}

.stream-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.stream-status i {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue-hot);
  box-shadow: 0 0 12px var(--blue-hot);
  animation: statusPulse 1.4s ease-in-out infinite;
}

.stream-viewport {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}

.stream-viewport::-webkit-scrollbar {
  display: none;
}

.stream-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.product-stream {
  display: flex;
  align-items: stretch;
  gap: 5vw;
  width: max-content;
  min-height: 620px;
  padding: 20px 9vw 44px;
}

.product-orbit {
  position: relative;
  width: min(440px, 70vw);
  min-height: 590px;
  flex: 0 0 auto;
  scroll-snap-align: center;
  isolation: isolate;
  perspective: 1000px;
}

.product-orbit.is-selected .product-figure {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 64px rgba(0, 0, 0, 0.38), 0 30px 94px rgba(0, 168, 255, 0.25), 0 20px 84px rgba(138, 44, 255, 0.22);
}

.product-orbit:nth-child(even) {
  transform: translateY(38px);
}

.product-figure {
  position: absolute;
  inset: 0 0 96px;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 58%, rgba(20, 38, 82, 0.48), transparent 56%),
    linear-gradient(145deg, rgba(0, 168, 255, 0.07), rgba(138, 44, 255, 0.08));
  border: 1px solid rgba(117, 173, 255, 0.16);
  border-radius: 43% 57% 49% 51% / 34% 40% 60% 66%;
  box-shadow: inset 0 0 64px rgba(0, 0, 0, 0.54), 0 36px 74px rgba(0, 0, 0, 0.35);
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
}

.product-orbit:nth-child(3n + 2) .product-figure {
  border-radius: 55% 45% 38% 62% / 49% 34% 66% 51%;
}

.product-orbit:nth-child(3n + 3) .product-figure {
  border-radius: 38% 62% 58% 42% / 42% 57% 43% 58%;
}

.product-figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -28%;
  background: conic-gradient(from 120deg, transparent 0 33%, rgba(0, 168, 255, 0.25) 39%, transparent 45% 70%, rgba(138, 44, 255, 0.24) 76%, transparent 83%);
  filter: blur(26px);
  opacity: 0;
  transition: opacity 0.35s ease;
  animation: portalTurn 6s linear infinite;
  pointer-events: none;
}

.product-figure::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -30%;
  left: -30%;
  top: -12%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), var(--blue-hot), transparent);
  box-shadow: 0 0 16px var(--blue);
  opacity: 0;
  pointer-events: none;
}

.product-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: radial-gradient(ellipse 77% 92% at 50% 50%, #000 66%, rgba(0, 0, 0, 0.84) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 77% 92% at 50% 50%, #000 66%, rgba(0, 0, 0, 0.84) 78%, transparent 100%);
  filter: saturate(1.03) contrast(1.05) brightness(0.94);
  transform: scale(0.98);
  transition: filter 0.35s ease;
  will-change: transform;
}

.product-orbit:hover .product-figure,
.product-orbit:focus-within .product-figure {
  transform: rotateY(3deg) rotateX(-2deg) translateY(-7px);
  box-shadow: inset 0 0 64px rgba(0, 0, 0, 0.35), 0 32px 90px rgba(0, 168, 255, 0.22), 0 20px 80px rgba(138, 44, 255, 0.18);
}

.product-orbit:hover .product-figure::before,
.product-orbit:focus-within .product-figure::before {
  opacity: 1;
}

.product-orbit:hover .product-figure::after,
.product-orbit:focus-within .product-figure::after {
  opacity: 1;
  animation: scanFilm 1.6s linear infinite;
}

.product-orbit:hover .product-figure img,
.product-orbit:focus-within .product-figure img {
  animation: microFilm 2.8s ease-in-out infinite alternate;
  filter: saturate(1.12) contrast(1.08) brightness(1.02);
}

.product-data {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 0;
  left: 5%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding: 17px 19px;
  border: 1px solid rgba(153, 184, 255, 0.18);
  border-radius: 28px 11px 28px 28px;
  background: rgba(10, 11, 27, 0.66);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.product-copy {
  min-width: 0;
}

.product-code {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-hot);
  font-size: 0.67rem;
  font-weight: 800;
}

.product-data h3 {
  margin: 0;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-data p {
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}

.product-price-row strong {
  font-size: 0.9rem;
}

.color-core,
.selected-color {
  display: block;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.32), 0 0 18px rgba(0, 168, 255, 0.24);
}

.color-core {
  width: 27px;
  height: 27px;
}

.product-order {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 0 28px rgba(0, 168, 255, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-order:hover,
.product-order:focus-visible {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 0 38px rgba(138, 44, 255, 0.4);
}

.product-order:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.stream-guide {
  width: min(860px, calc(100% - 44px));
  margin: -18px auto 10px;
  padding: 12px;
  border: 1px solid rgba(119, 190, 255, 0.22);
  border-radius: 34px;
  background: rgba(5, 7, 18, 0.72);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28), inset 0 0 28px rgba(0, 168, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.stream-guide-title {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.stream-controls {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 12px;
}

.stream-arrow {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.28), rgba(138, 44, 255, 0.24));
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
  box-shadow: 0 0 24px rgba(0, 168, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stream-arrow:hover,
.stream-arrow:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(138, 44, 255, 0.42);
}

.stream-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.stream-tabs::-webkit-scrollbar {
  display: none;
}

.stream-tab {
  min-width: 62px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  scroll-snap-align: center;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.stream-tab:hover,
.stream-tab:focus-visible,
.stream-tab.is-active {
  border-color: rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  transform: translateY(-2px);
}

.stream-tab:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.stream-progress {
  width: min(620px, 78%);
  height: 5px;
  margin: 12px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.stream-progress span {
  display: block;
  width: 15%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  box-shadow: 0 0 12px var(--blue);
  transform-origin: left center;
}

[dir="rtl"] .stream-progress span {
  transform-origin: right center;
}

.tiktok-zone {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(480px, 1.25fr);
  align-items: center;
  gap: 7%;
  min-height: 110svh;
  overflow: hidden;
}

.tiktok-zone::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  left: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 44, 255, 0.84), rgba(0, 168, 255, 0.76), transparent);
  box-shadow: 0 0 22px var(--violet);
  transform: rotate(-13deg);
}

.tiktok-copy {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.tiktok-copy .section-number {
  margin-bottom: 56px;
}

.tiktok-copy p:not(.section-number):not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 2;
}

.compact-link {
  min-height: 48px;
  margin-top: 26px;
}

.compact-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.tiktok-ripple {
  position: relative;
  z-index: 3;
  width: min(680px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
}

.ripple {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(0, 168, 255, 0.25);
  border-radius: 48% 52% 45% 55% / 54% 42% 58% 46%;
  box-shadow: inset 0 0 34px rgba(0, 168, 255, 0.05), 0 0 32px rgba(138, 44, 255, 0.1);
}

.ripple-one {
  animation: rippleMorph 8s ease-in-out infinite alternate;
}

.ripple-two {
  inset: 2%;
  border-color: rgba(138, 44, 255, 0.27);
  animation: rippleMorph 10s -4s ease-in-out infinite alternate-reverse;
}

.ripple-three {
  inset: -5%;
  border-color: rgba(93, 202, 255, 0.14);
  animation: rippleMorph 12s -7s ease-in-out infinite alternate;
}

.tiktok-embed-shell {
  position: relative;
  z-index: 3;
  width: 78%;
  height: 78%;
  display: grid;
  place-items: center;
  overflow: auto;
  border: 1px solid rgba(144, 183, 255, 0.2);
  border-radius: 47% 53% 46% 54% / 41% 46% 54% 59%;
  background: rgba(7, 8, 21, 0.58);
  box-shadow: inset 0 0 78px rgba(0, 0, 0, 0.54), var(--shadow-violet);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.tiktok-embed-shell::-webkit-scrollbar {
  display: none;
}

.tiktok-embed-shell .tiktok-embed {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 !important;
}

.tiktok-fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
}

.tiktok-fallback span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  text-shadow: 0 0 28px var(--blue), 0 0 60px var(--violet);
}

.tiktok-fallback b {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.order-zone {
  padding-bottom: 130px;
}

.order-intro {
  grid-template-columns: 88px 1fr;
}

.order-flow {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(131, 179, 255, 0.18);
  border-radius: 52px 18px 52px 52px;
  background: linear-gradient(130deg, rgba(9, 11, 28, 0.72), rgba(17, 8, 35, 0.58));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35), inset 0 0 80px rgba(0, 168, 255, 0.035);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.order-flow::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 14%;
  left: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-hot), var(--violet-hot), transparent);
  box-shadow: 0 0 18px var(--blue);
}

.order-current {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.current-image {
  width: 112px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 45% 55% 48% 52% / 40% 44% 56% 60%;
  background: rgba(255, 255, 255, 0.04);
  -webkit-mask-image: radial-gradient(ellipse 78% 90%, #000 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 90%, #000 68%, transparent 100%);
}

.current-copy small {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-hot);
  font-size: 0.68rem;
}

.current-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.current-copy p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.current-price {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.selected-color {
  width: 38px;
  height: 38px;
}

.current-price strong {
  font-size: 1.15rem;
}

.fluid-fields {
  display: grid;
  gap: 12px;
}

.product-fields {
  grid-template-columns: 1.5fr repeat(4, minmax(116px, 0.72fr)) auto;
}

.customer-fields {
  grid-template-columns: repeat(3, 1fr) 1.5fr;
  margin-top: 28px;
}

.fluid-field {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 13px 16px 12px;
  border: 1px solid rgba(152, 183, 255, 0.14);
  border-radius: 24px 9px 24px 24px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.fluid-field:focus-within {
  border-color: rgba(47, 198, 255, 0.62);
  background: rgba(0, 168, 255, 0.055);
  transform: translateY(-2px);
}

.fluid-field > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  font-weight: 700;
}

.fluid-field input,
.fluid-field select,
.fluid-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.86rem;
  resize: none;
}

.fluid-field select option {
  background: #090914;
  color: var(--white);
}

.fluid-field input::placeholder,
.fluid-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.add-current {
  min-width: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 29px 12px 29px 29px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  box-shadow: 0 0 28px rgba(0, 168, 255, 0.18);
  font-size: 0.78rem;
}

.add-current > span {
  font-size: 1.3rem;
}

.order-cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  margin-top: 18px;
  padding: 13px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cart-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.cart-flow::-webkit-scrollbar {
  display: none;
}

.cart-empty {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.78rem;
}

.cart-chip {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 248px;
  padding: 9px 10px;
  border: 1px solid rgba(138, 183, 255, 0.16);
  border-radius: 24px 10px 24px 24px;
  background: rgba(255, 255, 255, 0.035);
}

.cart-chip img {
  width: 38px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
}

.cart-chip b,
.cart-chip small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-chip b {
  font-size: 0.74rem;
}

.cart-chip small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
}

.remove-chip {
  width: 28px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
}

.total-pulse {
  min-width: 120px;
  text-align: end;
}

.total-pulse span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
}

.total-pulse strong {
  color: var(--blue-hot);
  font-size: 1.15rem;
  text-shadow: 0 0 18px rgba(0, 168, 255, 0.42);
}

.form-notice {
  margin: 18px 0 0;
  color: #ff8ad4;
  font-size: 0.82rem;
}

.send-vortex {
  position: relative;
  width: min(420px, 100%);
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px auto 0;
  overflow: hidden;
  border: 1px solid rgba(124, 213, 255, 0.5);
  border-radius: 36px 14px 36px 36px;
  background: linear-gradient(112deg, rgba(0, 168, 255, 0.88), rgba(95, 42, 255, 0.92));
  color: var(--white);
  box-shadow: 0 0 42px rgba(0, 168, 255, 0.22), 0 0 66px rgba(138, 44, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 800;
}

.send-vortex img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.send-vortex i {
  font-style: normal;
  font-size: 1.25rem;
}

.send-vortex::before {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  width: 40px;
  background: rgba(255, 255, 255, 0.33);
  filter: blur(12px);
  transform: rotate(24deg) translateX(290px);
  animation: sendShine 4.2s ease-in-out infinite;
}

.site-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 120px;
  padding: 24px 5%;
  border-top: 1px solid rgba(128, 174, 255, 0.14);
  background: rgba(1, 1, 5, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-signature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-signature > span {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 192, 255, 0.3);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.footer-signature b,
.footer-signature small {
  display: block;
}

.footer-signature b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.footer-signature small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.cyber-contact {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
}

[dir="rtl"] .cyber-contact {
  right: auto;
  left: 24px;
}

.contact-sphere {
  position: relative;
  z-index: 3;
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.72), rgba(0, 168, 255, 0.74) 16%, rgba(80, 32, 255, 0.86) 48%, #090817 72%);
  color: var(--white);
  box-shadow: 0 0 28px rgba(0, 168, 255, 0.42), 0 0 48px rgba(138, 44, 255, 0.32), inset -8px -10px 18px rgba(0, 0, 0, 0.42);
}

.sphere-core {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.sphere-orbit {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(117, 211, 255, 0.45);
  border-radius: 50%;
}

.orbit-one {
  transform: rotateX(68deg);
  animation: sphereOrbit 3.2s linear infinite;
}

.orbit-two {
  transform: rotateY(68deg);
  animation: sphereOrbit 4.2s linear infinite reverse;
}

.sphere-label {
  position: absolute;
  bottom: -28px;
  padding: 4px 9px;
  border: 1px solid rgba(126, 190, 255, 0.18);
  border-radius: 12px;
  background: rgba(7, 8, 19, 0.68);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-wave {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(0, 168, 255, 0.35);
  border-radius: 50%;
  animation: contactPulse 2s ease-out infinite;
  pointer-events: none;
}

.contact-dock {
  position: absolute;
  right: 0;
  bottom: 98px;
  width: 222px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(141, 180, 255, 0.18);
  border-radius: 28px 10px 28px 28px;
  background: rgba(7, 8, 21, 0.8);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42), var(--shadow-violet);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.92);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

[dir="rtl"] .contact-dock {
  right: auto;
  left: 0;
  border-radius: 10px 28px 28px 28px;
  transform-origin: bottom left;
}

.cyber-contact.is-open .contact-dock {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.contact-dock a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 10px;
  border-radius: 19px 7px 19px 19px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-dock a:hover,
.contact-dock a:focus-visible {
  background: linear-gradient(105deg, rgba(0, 168, 255, 0.17), rgba(138, 44, 255, 0.16));
  color: var(--white);
  transform: translateX(-3px);
}

.contact-dock img {
  width: 20px;
  height: 20px;
  margin: auto;
  filter: brightness(0) invert(1);
}

.toast {
  position: fixed;
  z-index: 150;
  top: 110px;
  left: 50%;
  max-width: min(420px, calc(100% - 32px));
  padding: 12px 18px;
  border: 1px solid rgba(126, 198, 255, 0.28);
  border-radius: 24px;
  background: rgba(7, 9, 22, 0.84);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  font-size: 0.78rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fieldDrift {
  0% { transform: translate3d(-3%, -2%, 0) rotate(-5deg); }
  100% { transform: translate3d(4%, 3%, 0) rotate(8deg); }
}

@keyframes vortexSpin {
  to { transform: rotate(360deg); }
}

@keyframes vortexBreath {
  to { transform: scale(1.08); opacity: 0.72; }
}

@keyframes currentRush {
  to { transform: scale(0.96); opacity: 0.35; }
}

@keyframes ringPulse {
  0% { transform: scale(0.76); opacity: 0; }
  28% { opacity: 0.72; }
  100% { transform: scale(1.65); opacity: 0; }
}

@keyframes brandShine {
  to { background-position: -220% 0; }
}

@keyframes silhouetteFloat {
  0% { translate: 0 6px; }
  100% { translate: 0 -12px; }
}

@keyframes indexFlow {
  to { transform: translateX(140%); }
}

@keyframes statusPulse {
  50% { opacity: 0.4; transform: scale(0.72); }
}

@keyframes portalTurn {
  to { transform: rotate(360deg); }
}

@keyframes scanFilm {
  0% { top: -12%; }
  100% { top: 112%; }
}

@keyframes microFilm {
  0% { transform: scale(0.98) translate3d(0, 0, 0); }
  35% { transform: scale(1.025) translate3d(-4px, -5px, 0); }
  68% { transform: scale(1.045) translate3d(5px, 3px, 0); }
  100% { transform: scale(1.015) translate3d(0, -7px, 0); }
}

@keyframes rippleMorph {
  0% { border-radius: 48% 52% 45% 55% / 54% 42% 58% 46%; transform: rotate(-4deg) scale(0.98); }
  100% { border-radius: 40% 60% 57% 43% / 46% 58% 42% 54%; transform: rotate(9deg) scale(1.035); }
}

@keyframes sendShine {
  0%, 58% { transform: rotate(24deg) translateX(290px); }
  80%, 100% { transform: rotate(24deg) translateX(-390px); }
}

@keyframes sphereOrbit {
  to { rotate: 360deg; }
}

@keyframes contactPulse {
  0% { transform: scale(0.78); opacity: 0; }
  35% { opacity: 0.66; }
  100% { transform: scale(1.38); opacity: 0; }
}

@media (max-width: 1120px) {
  .hero-copy {
    width: 56%;
  }

  .hero h1 {
    font-size: 6rem;
  }

  .hero-silhouettes {
    right: 46%;
  }

  .product-fields {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .add-current {
    min-height: 64px;
  }

  .customer-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .notes-field {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    top: 9px;
    right: 10px;
    left: 10px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    height: var(--header-height);
    padding: 8px 10px;
  }

  .brand-monogram {
    width: 44px;
    font-size: 1.6rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .main-nav {
    display: none;
  }

  .language-switch {
    min-width: 82px;
    min-height: 40px;
  }

  .order-orb {
    width: 42px;
  }

  .hero {
    min-height: 94svh;
    align-items: end;
    padding: 112px 22px 56px;
  }

  .hero::before {
    right: 20px;
    width: 72%;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero h1 small {
    font-size: 1.25rem;
  }

  .hero-copy > p:not(.signal-line) {
    max-width: 82%;
    font-size: 0.94rem;
  }

  .hero-silhouettes {
    top: 74px;
    right: 0;
    bottom: 27%;
    left: 24%;
    opacity: 0.72;
  }

  .silhouette-a {
    width: 48%;
  }

  .silhouette-b {
    left: 30%;
    width: 52%;
  }

  .silhouette-c {
    width: 46%;
  }

  .hero-echo {
    bottom: 12%;
    font-size: 9rem;
  }

  .hero-index {
    right: 22px;
    bottom: 24px;
  }

  .collection,
  .tiktok-zone,
  .order-zone {
    min-height: auto;
    padding: 90px 20px 68px;
  }

  .section-intro {
    grid-template-columns: 58px 1fr;
    margin-bottom: 32px;
  }

  .section-intro h2,
  .tiktok-copy h2 {
    font-size: 2.7rem;
  }

  .stream-status {
    grid-column: 2;
  }

  .product-stream {
    min-height: 560px;
    gap: 30px;
    padding: 18px 8vw 38px;
  }

  .product-orbit {
    width: min(390px, 82vw);
    min-height: 530px;
  }

  .product-orbit:nth-child(even) {
    transform: none;
  }

  .tiktok-zone {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .tiktok-copy {
    max-width: 100%;
  }

  .tiktok-copy .section-number {
    margin-bottom: 36px;
  }

  .tiktok-ripple {
    width: min(650px, 96vw);
  }

  .order-flow {
    padding: 24px;
    border-radius: 38px 14px 38px 38px;
  }

  .order-current {
    grid-template-columns: 92px 1fr auto;
  }

  .current-image {
    width: 92px;
  }

  .current-copy h3 {
    font-size: 1.75rem;
  }

  .product-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-field,
  .add-current {
    grid-column: span 2;
  }

  .add-current {
    min-height: 58px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  .vortex-gate {
    width: 174px;
  }

  .vortex-letter {
    font-size: 5rem;
  }

  .brand-name {
    display: none;
  }

  .language-switch {
    min-width: 76px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero-copy > p:not(.signal-line) {
    max-width: 100%;
    line-height: 1.8;
  }

  .flow-link {
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-silhouettes {
    bottom: 33%;
    left: 12%;
  }

  .silhouette-a,
  .silhouette-c {
    opacity: 0.5;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro .section-number,
  .stream-status {
    grid-column: 1;
  }

  .section-intro h2,
  .tiktok-copy h2 {
    font-size: 2.3rem;
  }

  .product-stream {
    min-height: 510px;
    padding-top: 10px;
  }

  .product-orbit {
    width: 84vw;
    min-height: 486px;
  }

  .product-figure {
    bottom: 88px;
  }

  .product-data {
    right: 2%;
    left: 2%;
    padding: 14px;
  }

  .product-data h3 {
    font-size: 1.45rem;
  }

  .product-data p {
    display: none;
  }

  .product-order {
    width: 48px;
  }

  .stream-guide {
    width: min(100% - 24px, 640px);
    margin-top: -12px;
    padding: 10px;
  }

  .stream-controls {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 8px;
  }

  .stream-arrow {
    width: 40px;
    font-size: 1.45rem;
  }

  .stream-tab {
    min-width: 56px;
    height: 38px;
    font-size: 0.71rem;
  }

  .tiktok-ripple {
    width: 104vw;
    margin-inline: -7vw;
  }

  .tiktok-embed-shell {
    width: 82%;
    height: 82%;
  }

  .order-zone {
    padding-right: 14px;
    padding-left: 14px;
  }

  .order-flow {
    padding: 18px 14px;
  }

  .order-current {
    grid-template-columns: 76px 1fr;
    gap: 14px;
  }

  .current-image {
    width: 76px;
  }

  .current-price {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: center;
  }

  .product-fields,
  .customer-fields {
    grid-template-columns: 1fr;
  }

  .wide-field,
  .add-current,
  .notes-field {
    grid-column: span 1;
  }

  .order-cart-line {
    grid-template-columns: 1fr;
  }

  .total-pulse {
    text-align: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer p {
    grid-column: 1;
    grid-row: auto;
    text-align: start;
  }

  .cyber-contact,
  [dir="rtl"] .cyber-contact {
    right: auto;
    left: 18px;
    bottom: max(22px, env(safe-area-inset-bottom));
  }

  .contact-sphere {
    width: 68px;
  }

  .sphere-core {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
