/* ==========================================================
   COMING SOON — Split Hero
   Left: eyebrow + split title + "Is Coming Soon" + desc + CTA
   Right: framed product image with corner accents + glow
   Below: 4-up feature cards
   ========================================================== */

.cs-hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 1rem 4rem;
  background: #050505;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Layered dark backdrop with a soft warm radial accent */
.cs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 30%,
      rgba(212, 168, 26, 0.10) 0%,
      transparent 55%),
    radial-gradient(circle at 15% 75%,
      rgba(212, 168, 26, 0.06) 0%,
      transparent 50%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  pointer-events: none;
}

/* Grid texture, masked toward the edges */
.cs-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(212, 168, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 26, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  pointer-events: none;
}

/* Floating accent orbs */
.cs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: csFloat 14s ease-in-out infinite alternate;
}
.cs-orb-1 {
  width: 520px;
  height: 520px;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(212, 168, 26, 0.55), transparent 70%);
}
.cs-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(212, 168, 26, 0.30), transparent 70%);
  animation-delay: -5s;
}
@keyframes csFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -25px) scale(1.06); }
}

.cs-hero-container { z-index: 2; }

/* ----------------------------------------------------------
   SPLIT ROW
   ---------------------------------------------------------- */
.cs-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* ----------------------------------------------------------
   LEFT — CONTENT
   ---------------------------------------------------------- */
.cs-hero-content {
  max-width: 680px;
}

.cs-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.cs-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  text-wrap: balance;
}
.cs-title-line {
  display: block;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .cs-title-line { white-space: normal; }
}
.cs-title-accent {
  background: linear-gradient(135deg, #f5d76e 0%, #d4a81a 50%, #f5d76e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 20px rgba(212, 168, 26, 0.4));
  animation: csShine 6s linear infinite;
}
@keyframes csShine {
  to { background-position: 200% center; }
}

.cs-coming-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}
.cs-coming-bar {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(212, 168, 26, 0.55);
}
.cs-coming-text {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.cs-desc {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-primary);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.2rem;
}

/* CTA */
.cs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.6rem 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(212, 168, 26, 0.5);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.35s ease,
              color 0.3s ease;
}
.cs-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-cta:hover {
  color: #000;
  background: linear-gradient(135deg, #f5d76e 0%, #d4a81a 50%, #c49a18 100%);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(212, 168, 26, 0.4);
}
.cs-cta:hover::before { transform: translateX(100%); }
.cs-cta:hover .cs-cta-icon { background: rgba(0, 0, 0, 0.12); color: #000; }
.cs-cta:hover .cs-cta-arrow { transform: translateX(4px); color: #000; }

.cs-cta-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 26, 0.16);
  color: var(--accent);
  font-size: 0.78rem;
  transition: all 0.3s ease;
}
.cs-cta-arrow {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.35s ease, color 0.3s ease;
}

/* ----------------------------------------------------------
   RIGHT — FRAMED IMAGE
   ---------------------------------------------------------- */
.cs-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-visual-frame {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 5 / 4;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 168, 26, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  isolation: isolate;
}

.cs-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-visual-frame:hover .cs-visual-img { transform: scale(1.04); }

/* Inner radial glow behind the image for extra depth */
.cs-visual-glow {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: radial-gradient(circle at 50% 35%, rgba(212, 168, 26, 0.35), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

/* Corner accents */
.cs-visual-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  z-index: 2;
  pointer-events: none;
}
.cs-visual-corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.cs-visual-corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.cs-visual-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.cs-visual-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

/* Category badge */
.cs-visual-badge {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(212, 168, 26, 0.5);
  color: var(--accent);
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cs-visual-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: csPulse 1.6s ease-in-out infinite;
}
@keyframes csPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* ----------------------------------------------------------
   FEATURE CARDS (4 across bottom)
   ---------------------------------------------------------- */
.cs-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cs-feature {
  padding: 1.7rem 1.4rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}
.cs-feature:last-child { border-right: none; }
.cs-feature:hover {
  background: rgba(212, 168, 26, 0.04);
}

.cs-feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 168, 26, 0.08);
  border: 1.5px solid rgba(212, 168, 26, 0.28);
  color: var(--accent);
  font-size: 1.15rem;
  transition: all 0.3s ease;
}
.cs-feature:hover .cs-feature-icon {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(212, 168, 26, 0.4);
  transform: translateY(-3px);
}

.cs-feature-title {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}

.cs-feature-desc {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1199px) {
  .cs-hero-split { gap: 3rem; }
  .cs-visual-frame { max-width: 500px; }
}

@media (max-width: 991px) {
  .cs-hero { padding: 7rem 1rem 3rem; }
  .cs-hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .cs-hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .cs-desc { margin-left: auto; margin-right: auto; }
  .cs-coming-row { justify-content: center; }
  .cs-hero-visual { order: -1; }
  .cs-visual-frame { max-width: 460px; aspect-ratio: 4 / 3; }
  .cs-features { grid-template-columns: repeat(2, 1fr); }
  .cs-feature {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .cs-feature:nth-child(2n) { border-right: none; }
  .cs-feature:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .cs-hero { padding: 6rem 1rem 3rem; }
  .cs-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
  }
  .cs-title {
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
  }
  .cs-coming-row { gap: 0.7rem; margin-bottom: 1.2rem; }
  .cs-coming-bar { width: 36px; }
  .cs-coming-text { letter-spacing: 3.5px; font-size: 0.85rem; }
  .cs-desc { font-size: 0.95rem; margin-bottom: 1.8rem; }
  .cs-cta {
    padding: 0.85rem 1.4rem 0.85rem 1rem;
    font-size: 0.74rem;
    letter-spacing: 1.8px;
    gap: 0.65rem;
  }
  .cs-cta-icon { width: 26px; height: 26px; font-size: 0.72rem; }
  .cs-visual-frame { max-width: 100%; aspect-ratio: 4 / 3; border-radius: 18px; }
  .cs-visual-corner { width: 22px; height: 22px; }
  .cs-visual-corner.tl, .cs-visual-corner.tr,
  .cs-visual-corner.bl, .cs-visual-corner.br {
    top: 10px; left: 10px;
  }
  .cs-visual-corner.tr { left: auto; right: 10px; }
  .cs-visual-corner.bl { top: auto; bottom: 10px; }
  .cs-visual-corner.br { top: auto; bottom: 10px; left: auto; right: 10px; }
  .cs-visual-badge {
    font-size: 0.62rem;
    letter-spacing: 2px;
    padding: 0.35rem 0.85rem;
  }
  .cs-feature { padding: 1.3rem 1rem; }
  .cs-feature-title { font-size: 0.74rem; letter-spacing: 1.8px; }
  .cs-feature-desc { font-size: 0.78rem; }
}

@media (max-width: 540px) {
  .cs-features { grid-template-columns: 1fr; }
  .cs-feature {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .cs-feature:last-child { border-bottom: none; }
  .cs-cta { width: 100%; justify-content: center; padding-right: 1.2rem; }
}
