:root {
  --bg-dark: #0a0f1e;
  --accent-cyan: #00f5ff;
  --accent-purple: #a29bfe;
  --text-main: #ffffff;
  --text-muted: #a0a0a8;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  min-height: 100%;
  overflow-x: hidden;
}

.main-wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* Header - Floating on Desktop */
.main-header {
  position: absolute;
  top: 3rem;
  left: 4rem;
  z-index: 100;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 40px !important;
  color: var(--accent-cyan);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

/* Content Area */
.content-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  padding-top: 8rem; /* Space for the floating header */
}

.badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* Socials */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--text-main);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 245, 255, 0.2);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* Image */
.image-section {
  flex: 1.2;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
  .main-wrapper {
    flex-direction: column;
    min-height: 100vh;
  }

  .main-header {
    position: relative; /* Snap to top */
    top: 0;
    left: 0;
    order: 1; /* First */
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .image-section {
    order: 2; /* Second */
    height: 45vh; /* Fixed height so it's always visible */
    flex: none;
  }

  .image-section img {
    clip-path: none; /* Show full image */
  }

  .content-section {
    order: 3; /* Third */
    padding: 3rem 1.5rem 5rem;
    align-items: center;
    text-align: center;
    flex: none;
  }

  .social-links {
    justify-content: center;
    width: 100%;
  }

  p {
    margin: 0 auto 2.5rem;
  }
}
