/* (c) 2026 Sentys Inc. All rights reserved. */






.hero-home {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  animation: heroZoom 1.4s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.2) 100%);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  height: 26%;
  z-index: 2;
  background: linear-gradient(to top, var(--white) 0%, rgba(255,255,255,0.75) 38%, rgba(255,255,255,0) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;

  padding: clamp(110px, 14vh, 160px) 48px 26px;
  width: 100%;
}

.hero-line { overflow: hidden; display: block; }

.hero-line span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.88;
  transform: translateY(110%);
  animation: slideUp 0.7s ease-out forwards;
}

.hero-line:nth-child(1) span { animation-delay: 0.15s; }
.hero-line:nth-child(2) span { animation-delay: 0.25s; }
.hero-line:nth-child(3) span { animation-delay: 0.35s; }

.hero-line:nth-child(3) span::after {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.5);
  margin-top: 4px;
}

@keyframes slideUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}


.hero-section--product {
  position: relative;


  height: auto !important;
  min-height: max(30vh, 220px) !important;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #2a2a2a;
}

.hero-section--product::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.2) 100%);
}

.hero-section--product::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  max-height: 140px;
  z-index: 2;
  background: linear-gradient(to top, var(--white) 0%, rgba(255,255,255,0.8) 30%, rgba(255,255,255,0) 100%);
}

.hero-section--product .hero-content {
  --hero-pt: clamp(110px, 14vh, 160px);



  --hero-fs: clamp(2.4rem, 7vw, 6rem);
  position: relative;
  z-index: 3;
  padding: var(--hero-pt) 48px 0;
  width: 100%;
}

.hero-section--product .hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: var(--hero-fs);
  line-height: 0.9;





  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .hero__content { padding: clamp(90px, 14vh, 130px) 24px 0; }
  .hero-section--product { height: 50vh; min-height: 300px; }
  .hero-section--product .hero-content {
    --hero-pt: clamp(90px, 14vh, 130px);
    padding: var(--hero-pt) 24px 0;
  }
}


.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4);
  margin-top: 16px;
  max-width: 600px;
  line-height: 1.6;
  letter-spacing: 0.015em;
}


.hero-section--product .hero-subtitle { display: none; }


.hero-cycle {
  position: relative;
  overflow: hidden;
}
.hero-cycle .hero-cycle__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-cycle .hero-cycle__img.active {
  opacity: 1;
}
.hero-cycle .hero-cycle__img:first-child {
  position: relative;
}



.hero-section--product .hero-content__alt-view {
  position: absolute;
  top: calc(var(--hero-pt) + var(--hero-fs) * 0.78 - 16px);
  right: 48px;
  z-index: 5;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(2px);
  transition: all 0.15s ease;
}
.hero-section--product .hero-content__alt-view:hover {
  border-color: var(--white);
  background: rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .hero-section--product .hero-content__alt-view {
    right: 24px;
    top: calc(var(--hero-pt) + var(--hero-fs) * 0.78 - 14px);
    font-size: 11px;
    padding: 5px 10px;
  }
}













.hero-globe {
  --size: clamp(230px, 20vw, 350px);
  position: absolute;
  top: clamp(34px, 4vw, 66px);
  right: clamp(40px, 5vw, 96px);
  width: var(--size);
  height: var(--size);
  z-index: 1;


  pointer-events: auto;
  cursor: grab;
  touch-action: none;
  isolation: isolate;
}

.hero-globe.is-dragging { cursor: grabbing; }


.hero-globe__ring,
.hero-globe__sat,
.hero-globe__sat img { pointer-events: none; }

.hero-globe__sphere {
  position: absolute;
  inset: 20%;
  z-index: 1;
  border-radius: 50%;




  background-image:
    linear-gradient(rgba(22, 26, 34, 0.55), rgba(22, 26, 34, 0.55)),
    url('../images/globe-texture.png');
  background-repeat: no-repeat, repeat-x;
  background-size: cover, auto 100%;
  opacity: 1;
  animation: hero-globe-spin 120s linear infinite;
  box-shadow: inset -14px -10px 34px rgba(0, 0, 0, 0.55),
              inset 10px 8px 26px rgba(255, 255, 255, 0.18);
}

.hero-globe__shade {
  position: absolute;
  inset: 20%;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.05) 38%, rgba(0,0,0,0) 55%),
    radial-gradient(circle at 68% 76%, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.14) 45%, rgba(0,0,0,0) 66%);
  opacity: 0.6;
}

.hero-globe__ring {
  position: absolute;
  inset: 0;
  z-index: 3;
  animation: hero-globe-ring var(--dur) linear infinite;
  animation-delay: var(--delay);
}

.hero-globe__sat {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 36px;
  margin: -18px 0 0 -38px;
  display: grid;
  place-items: center;
  animation: hero-globe-sat var(--dur) linear infinite;
  animation-delay: var(--delay);
}

.hero-globe__sat img {
  max-width: 76px;
  max-height: 32px;
  object-fit: contain;







  filter: grayscale(1) invert(1) brightness(1.35) contrast(1.1)
          drop-shadow(0 1px 2px rgba(0,0,0,0.85))
          drop-shadow(0 0 9px rgba(0,0,0,0.65));


  grid-area: 1 / 1;
  transition: opacity 0.9s ease;
}
.hero-globe__sat img.is-leaving { opacity: 0; }

@keyframes hero-globe-spin {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 0, -200% 0; }
}


@keyframes hero-globe-ring {




  0%    { transform: scaleY(var(--flat)) rotate(0deg);   z-index: 3; }
  49.9% { transform: scaleY(var(--flat)) rotate(179deg); z-index: 3; }
  50%   { transform: scaleY(var(--flat)) rotate(180deg); z-index: 0; }
  99.9% { transform: scaleY(var(--flat)) rotate(359deg); z-index: 0; }
  100%  { transform: scaleY(var(--flat)) rotate(360deg); z-index: 3; }
}


@keyframes hero-globe-sat {


  0%    { transform: translateX(var(--r)) rotate(0deg)    scaleY(var(--unflat)) scale(1);    opacity: 1; }
  25%   { transform: translateX(var(--r)) rotate(-90deg)  scaleY(var(--unflat)) scale(1.08); opacity: 1; }
  49.9% { transform: translateX(var(--r)) rotate(-179deg) scaleY(var(--unflat)) scale(1);    opacity: 1; }
  50%   { transform: translateX(var(--r)) rotate(-180deg) scaleY(var(--unflat)) scale(0.97); opacity: 0.8; }
  75%   { transform: translateX(var(--r)) rotate(-270deg) scaleY(var(--unflat)) scale(0.82); opacity: 0.45; }
  99.9% { transform: translateX(var(--r)) rotate(-359deg) scaleY(var(--unflat)) scale(0.97); opacity: 0.8; }
  100%  { transform: translateX(var(--r)) rotate(-360deg) scaleY(var(--unflat)) scale(1);    opacity: 1; }
}

@media (max-width: 900px) {
  .hero-globe { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-globe__sphere,
  .hero-globe__ring,
  .hero-globe__sat { animation: none; }
}





.hero-overlay,
.hero-fade { pointer-events: none; }






.hero__content { pointer-events: none; }
.hero-line,
.hero-line span { pointer-events: none; }
