
.hero {
  position: relative;
  overflow: hidden;
  padding: 145px 0 115px;
  background:
    radial-gradient(circle at 78% 34%, rgba(211,170,63,.14), transparent 26%),
    linear-gradient(105deg, #070707 0%, #090909 55%, #0e0c08 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 40px;
  border: 1px solid rgba(211,170,63,.14);
  border-radius: 50%;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.03em;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero p {
  max-width: 590px;
  margin: 26px 0 32px;
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.025);
  box-shadow: var(--shadow);
  animation: gentleFloat 5s ease-in-out infinite;
}

.hero-image-frame img {
  width: 100%;
  border-radius: 18px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(211,170,63,.18);
  border-radius: 50%;
  animation: slowSpin 24s linear infinite;
}

.orbit.one { width: 420px; height: 420px; }
.orbit.two { width: 540px; height: 540px; border-style: dashed; animation-direction: reverse; }

@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes gentleFloat { 50% { transform: translateY(-8px); } }

.feature-strip {
  position: relative;
  z-index: 5;
  margin-top: -52px;
}

.feature-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(16,16,16,.96);
  box-shadow: var(--shadow);
}

.feature-item {
  height: 100%;
  padding: 32px 26px;
  border-right: 1px solid var(--line-soft);
}

.feature-item:last-child { border-right: 0; }

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: .3s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-4px);
  background: rgba(211,170,63,.08);
}

.feature-item h5 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
}

.feature-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.home-products {
  background:
    radial-gradient(circle at 12% 70%, rgba(211,170,63,.055), transparent 26%);
}

.product-card .product-media {
  height: 280px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(180deg, #121212, #0d0d0d);
}

.product-card .product-media img {
  max-height: 230px;
  width: auto;
  object-fit: contain;
  transition: .45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035) translateY(-3px);
}

.product-card .product-body { padding: 26px; }

.product-card small {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 9px 0 12px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.product-card p { font-size: 14px; }

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-link span { transition: .25s ease; }
.product-link:hover span { transform: translateX(4px); }

.stats {
  padding: 0 0 100px;
}

.stats-panel {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 42px 0;
}

.stat {
  text-align: center;
  border-right: 1px solid var(--line-soft);
}

.stat:last-child { border-right: 0; }

.stat strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.why-image {
  position: relative;
  padding: 20px 20px 0 0;
}

.why-image::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 64%;
  height: 64%;
  border: 1px solid var(--gold);
  border-radius: 20px;
}

.why-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.why-points { margin-top: 34px; }

.why-point {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.why-point .tick {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}

.why-point h5 { margin: 0 0 6px; font-size: 17px; }
.why-point p { margin: 0; font-size: 14px; }

.application-grid .app-card {
  padding: 30px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255,255,255,.018);
  text-align: center;
  transition: .3s ease;
}

.app-card:hover {
  border-color: var(--line);
  transform: translateY(-5px);
}

.app-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
}

.app-card h5 { margin: 0; font-size: 13px; }

@media (max-width: 991.98px) {
  .hero { padding: 140px 0 96px; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 430px; margin-top: 35px; }
  .feature-strip { margin-top: -34px; }
  .feature-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 767.98px) {
  .hero { padding: 132px 0 80px; }
  .hero-visual { min-height: 360px; }
  .orbit { display: none; }
  .feature-strip { margin-top: 0; padding-top: 24px; }
  .stat { border-right: 0; padding: 18px 0; }
}

@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
