@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  background: #02112a;
}

#ht-site, #ht-site * { box-sizing: border-box; }

#ht-site {
  --ht-bg: #031430;
  --ht-bg-2: #062456;
  --ht-panel: rgba(10, 43, 90, 0.92);
  --ht-panel-strong: rgba(12, 52, 110, 0.98);
  --ht-line: rgba(112, 209, 255, 0.35);
  --ht-soft: #e3efff;
  --ht-soft-2: #cfe2ff;
  --ht-accent: #6fe3ff;
  --ht-accent-2: #2f7dff;
  --ht-ink: #021024;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  padding-top: 8px;
  background:
    radial-gradient(circle at 12% 72%, rgba(47, 125, 255, 0.16), transparent 44%),
    radial-gradient(circle at 88% 70%, rgba(111, 227, 255, 0.14), transparent 46%),
    linear-gradient(180deg, #02112a 0%, #031532 48%, #02112a 100%);
  color: #ffffff;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow: hidden;
}

#ht-site::before,
#ht-site::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#ht-site::before{
  background:
    radial-gradient(ellipse at 50% -6%, rgba(111, 227, 255, 0.22), transparent 40%),
    radial-gradient(circle at 78% 22%, rgba(47, 125, 255, 0.18), transparent 45%);
  opacity: 0.78;
  z-index: 0;
}

#ht-site::after{
  background: linear-gradient(180deg, rgba(2, 8, 20, 0.15) 0%, rgba(2, 8, 20, 0) 34%, rgba(2, 8, 20, 0.52) 100%);
  z-index: 0;
}

#ht-site a { color: inherit; }

#ht-site .ht-network-global{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.95;
  pointer-events: none;
}

body.ht-static-bg #ht-site{
  background: transparent;
  z-index: 1;
}

body.ht-static-bg{
  position: relative;
  background-color: #02112a;
}

body.ht-static-bg::before{
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    var(--ht-static-bg),
    url('../images/highland_background_4k.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}

body.ht-static-bg #ht-site::before,
body.ht-static-bg #ht-site::after{
  opacity: 0;
}

body.ht-static-bg #ht-site .ht-network-global{
  display: none;
}

#ht-site .ht-header,
#ht-site .ht-hero,
#ht-site .ht-container,
#ht-site .ht-footer,
#ht-site .ht-band,
#ht-site .ht-product-hero{
  position: relative;
  z-index: 2;
}

#ht-site .ht-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}

#ht-site .ht-header{
  position: sticky;
  top: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

#ht-site .ht-header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#ht-site .ht-logo{
  display:flex;
  align-items:center;
}

#ht-site .ht-logo-img{
  width: auto;
  height: 40px;
  display: block;
}

#ht-site .ht-nav{
  display:flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items:center;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #eef6ff;
}

#ht-site .ht-nav a{
  text-decoration:none;
  padding: 0;
  line-height: 1;
  opacity: 0.92;
}

#ht-site .ht-nav a:hover{
  color: var(--ht-accent);
  opacity: 1;
}

#ht-site h1,
#ht-site h2,
#ht-site h3{
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  letter-spacing: -0.4px;
}

#ht-site .ht-hero{
  padding: 80px 20px 35px;
  text-align: center;
  overflow: hidden;
}

#ht-site .ht-hero::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 4px;
  background:
    radial-gradient(ellipse at center, rgba(235, 252, 255, 0.95) 0%, rgba(150, 230, 255, 0.75) 35%, rgba(111, 227, 255, 0) 70%),
    linear-gradient(
      90deg,
      rgba(111, 227, 255, 0) 0%,
      rgba(111, 227, 255, 0.25) 16%,
      rgba(245, 253, 255, 1) 50%,
      rgba(111, 227, 255, 0.25) 84%,
      rgba(111, 227, 255, 0) 100%
    );
  box-shadow:
    0 0 12px rgba(200, 246, 255, 0.85),
    0 0 40px rgba(120, 210, 255, 0.6),
    0 0 70px rgba(47, 125, 255, 0.45);
  pointer-events: none;
}

body.ht-static-bg #ht-site .ht-hero::before{
  display: none;
}

#ht-site .ht-hero::after{ content: none; }

#ht-site .ht-hero + .ht-container{
  padding-top: 35px;
}

#ht-site .ht-hero-inner{
  max-width: 980px;
  margin: 0 auto;
}

#ht-site .ht-hero h1{
  margin: 0 0 16px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

#ht-site .ht-hero p{
  margin: 0 auto;
  max-width: 780px;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ht-soft);
}

#ht-site .ht-cta{
  margin-top: 28px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

#ht-site .ht-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 800;
  border: 1px solid rgba(111, 227, 255, 0.45);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}

#ht-site .ht-btn-primary{
  background: linear-gradient(135deg, var(--ht-accent-2), var(--ht-accent));
  color: var(--ht-ink);
  border-color: rgba(111, 227, 255, 0.6);
  box-shadow: 0 22px 70px rgba(34, 110, 255, 0.45);
}

#ht-site .ht-hero .ht-btn-primary{
  box-shadow: none;
}

#ht-site .ht-btn-secondary{
  background: rgba(10, 38, 82, 0.85);
  color: #ffffff;
}

#ht-site .ht-btn-ghost{
  background: transparent;
  border-color: rgba(111, 227, 255, 0.6);
  color: #e6f2ff;
}

#ht-site .ht-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 70px rgba(0,0,0,0.45);
  border-color: rgba(111, 227, 255, 0.85);
}

#ht-site .ht-section-head{
  text-align: center;
  margin-bottom: 28px;
}

#ht-site .ht-section-title{
  font-size: clamp(26px, 3.3vw, 40px);
  margin: 0 0 10px 0;
}

#ht-site .ht-section-sub{
  margin: 0 auto;
  max-width: 760px;
  color: var(--ht-soft);
  margin-bottom: 28px;
}

#ht-site .ht-key-features .ht-divider{
  display: none;
}

#ht-site .ht-muted{ color: var(--ht-soft); }

#ht-site .ht-legal-body{
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

#ht-site .ht-grid{
  display:grid;
  gap: 22px;
}

#ht-site .ht-store-wrap{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

#ht-site .ht-store-card{
  max-width: 520px;
  width: 100%;
}

#ht-site .ht-store-card .ht-card-link{
  margin-top: 18px;
}

#ht-site .ht-grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#ht-site .ht-grid-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#ht-site .ht-card{
  background: var(--ht-panel);
  border: 1px solid rgba(111, 227, 255, 0.3);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

#ht-site .ht-card-link-wrap{
  display: block;
  text-decoration: none;
  color: inherit;
}

#ht-site .ht-card::before{
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(111, 227, 255, 0), rgba(111, 227, 255, 0.85), rgba(111, 227, 255, 0));
  opacity: 0.6;
}

#ht-site .ht-card:hover{
  transform: translateY(-6px);
  border-color: rgba(111, 227, 255, 0.75);
  box-shadow: 0 28px 90px rgba(0,0,0,0.4);
}

#ht-site .ht-card h3{
  margin: 0 0 8px 0;
}

#ht-site .ht-card p{
  margin: 0;
  color: var(--ht-soft-2);
}

#ht-site .ht-card-link{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #dff1ff;
}

#ht-site .ht-card-link span{ opacity: 0.75; }

#ht-site .ht-card-meta{
  margin-top: 10px;
  font-size: 13px;
  color: var(--ht-soft);
}

#ht-site .ht-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(111, 227, 255, 0.2);
  border: 1px solid rgba(111, 227, 255, 0.6);
  color: #e6fbff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

#ht-site .ht-divider{
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(111, 227, 255, 0), rgba(111, 227, 255, 0.95), rgba(111, 227, 255, 0));
  margin: 16px auto 0;
}

#ht-site .ht-band{
  background: linear-gradient(180deg, rgba(6, 24, 56, 0.95), rgba(10, 44, 98, 0.98));
  border-top: 1px solid rgba(111, 227, 255, 0.25);
  border-bottom: 1px solid rgba(111, 227, 255, 0.25);
  text-align: center;
  padding: 50px 20px;
}

#ht-site .ht-band h2{
  margin: 0 0 10px 0;
  font-size: clamp(22px, 3vw, 32px);
}

#ht-site .ht-band p{
  margin: 0 auto;
  max-width: 720px;
  color: var(--ht-soft);
}

#ht-site .ht-product-hero{
  padding: 70px 20px 40px;
  border-top: 1px solid rgba(111, 227, 255, 0.25);
}

#ht-site .ht-product-hero + .ht-key-features{
  padding-top: 40px;
}

#ht-site .ht-key-features + section{
  padding-top: 40px;
}

#ht-site .ht-product-hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

#ht-site .ht-product-shot{
  padding-top: 30px;
  padding-bottom: 40px;
}

#ht-site .ht-product-shot-inner{
  max-width: 1000px;
  margin: 0 auto;
}

#ht-site .ht-product-text{
  flex: 1;
  min-width: 280px;
}

#ht-site .ht-product-media{
  flex: 1;
  min-width: 320px;
  display:flex;
  justify-content:center;
}

#ht-site .ht-ui-wrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(111, 227, 255, 0.5);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  transform: translateZ(0);
  animation: htFloat 7s ease-in-out infinite;
  max-width: 640px;
  width: 100%;
}

#ht-site .ht-ui-wrap::before{
  content:"";
  position:absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 30% 20%, rgba(111, 227, 255, 0.4), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(47, 125, 255, 0.35), transparent 50%);
  pointer-events:none;
  z-index: 1;
}

#ht-site .ht-ui-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent 20%, rgba(111, 227, 255, 0.16), transparent 60%);
  transform: translateX(-40%);
  animation: htShimmer 6.5s ease-in-out infinite;
  pointer-events:none;
  z-index: 2;
}

#ht-site .ht-ui-img{
  display:block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

#ht-site .ht-feature-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
  background: linear-gradient(135deg, rgba(111, 227, 255, 0.55), rgba(47, 125, 255, 0.5));
  color: #e9f6ff;
  border: 1px solid rgba(111, 227, 255, 0.6);
  margin-bottom: 10px;
}

#ht-site .ht-footer{
  padding: 46px 20px;
  background: rgba(4, 20, 44, 0.92);
  border-top: 1px solid rgba(111, 227, 255, 0.25);
  text-align:center;
}

#ht-site .ht-footer a{
  text-decoration:none;
  color: var(--ht-soft);
}

#ht-site .ht-footer a:hover{ color: var(--ht-accent); }

#ht-site .ht-footer-links{
  margin: 10px 0 0;
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap:wrap;
  opacity: 0.95;
}

.ht-preview-banner{
  margin: 0 auto 20px;
  max-width: 1200px;
  background: rgba(111, 227, 255, 0.2);
  border: 1px solid rgba(111, 227, 255, 0.6);
  color: #e6fbff;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: center;
}

body.ht-layout-glow #ht-site{
  --ht-panel: rgba(16, 42, 80, 0.86);
  --ht-accent: #72e7ff;
  --ht-accent-2: #4b8dff;
}

body.ht-layout-crisp #ht-site{
  --ht-panel: rgba(8, 26, 52, 0.92);
  --ht-accent: #5ad1ff;
  --ht-accent-2: #2f6dff;
}

@keyframes htFloat{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

@keyframes htShimmer{
  0%{ transform: translateX(-55%); opacity: 0.35; }
  45%{ opacity: 0.55; }
  100%{ transform: translateX(55%); opacity: 0.35; }
}

@media (max-width: 1000px){
  #ht-site .ht-grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px){
  #ht-site .ht-grid-3{ grid-template-columns: 1fr; }
}

@media (max-width: 700px){
  #ht-site .ht-header-inner{ flex-direction: column; align-items: flex-start; }
  #ht-site .ht-nav{ gap: 14px; }
  #ht-site .ht-hero{ padding-top: 90px; padding-bottom: 50px; }
  #ht-site .ht-logo-img{ height: 48px; }
}

@media (max-width: 600px){
  #ht-site .ht-grid-4{ grid-template-columns: 1fr; }
}
