/* --- Reset & Global Styles --- */
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #030508;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  
  /* Deep blue ambient background glow */
  background: radial-gradient(
    120% 60% at 50% 100%,
    #133763 0%,
    #091d38 40%,
    #020813 75%,
    #000000 100%
  );
}

/* --- Top Header --- */
.top-nav {
  width: 100%;
  padding: 24px 0;
  text-align: center;
}

.brand-logo {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: #8a8d93;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Hero Section --- */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  align-items: center;
  gap: (0.5rem, 2vw, 1rem);
}

/* --- Left Column --- */
.left-col h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --- Center Column Asset --- */
.center-col {
  display: flex;
  justify-content: flex-start;
}

.feature-image {
  max-height: clamp(180px, 30vw, 380px);
  width: auto;
  object-fit: contain;
  /* subtle drop glow behind the object */
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  margin-left: -6rem;
  transform: translateX(clamp(-90px, -6vw, -20px));
}

/* --- Right Column --- */
.right-col h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #f1f1f1;
  padding-left: 5rem;
}

/* Gradient highlight on “creative” */ 
.gradient-text{
  background: linear-gradient(90deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  font-style: italic;
  display: inline-block;
}

/* --- Responsiveness for Mobile/Tablet --- */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(0.5rem, 2vw, 1rem);
  }

  .left-col, .right-col {
    justify-content: center;
    padding-left: 0;
  }

  .right-col h1{
    padding-left: 0;
  }

  .center-col{
    justify-content: center;
  }

  .feature-image {
    transform: translateX(0);
    max-height: 240px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .top-nav {
    padding: 16px 0;
  }

  .left-col h2, .right-col h1 {
    font-size: 1.5rem;
  }

  .feature-image {
    max-height: 180px;
  }
}