:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --accent: #b084cc;
  --accent-blue: #4a90e2;
  --font-heading: 'Heebo', 'Outfit', sans-serif;
  --font-body: 'Heebo', 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Magical Background Blobs */
.background-magic {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: var(--bg-color);
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 60vw;
  height: 60vw;
  filter: blur(120px);
  opacity: 0.4;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.blob-1 {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation: move-1 25s infinite alternate ease-in-out;
}

.blob-2 {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  animation: move-2 30s infinite alternate-reverse ease-in-out;
}

.blob-3 {
  top: 30%;
  left: 20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #ff9f43 0%, transparent 70%);
  animation: move-3 20s infinite alternate ease-in-out;
  opacity: 0.2;
}

@keyframes move-1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(15%, 15%) scale(1.1); }
}

@keyframes move-2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-15%, -15%) scale(1.2); }
}

@keyframes move-3 {
  from { transform: translate(-5%, 5%) scale(1); }
  to { transform: translate(10%, -10%) scale(1.1); }
}

/* Container Layout */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* Hero Section */
.hero-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-image {
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  animation: subtle-float 6s ease-in-out infinite;
  object-fit: cover;
}

@keyframes subtle-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Glass Card Content */
.glass-card {
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Internal magical glow inside the card */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  pointer-events: none;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  text-transform: none;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .logo {
    justify-content: center;
  }
}

.logo img {
  height: 44px;
  width: auto;
  margin-left: 0;
  margin-bottom: 8px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Typography */
/* Spiritual Motto */
.motto {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
  font-family: 'Varela Round', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .motto {
    font-size: 1.6rem;
    gap: 0.5rem;
  }
}

.motto .word {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 1) 35%,
    #d4aaff 50%,
    rgba(255, 255, 255, 1) 65%,
    rgba(255, 255, 255, 0.8) 100%
  );
  background-size: 300% auto;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: 
    float-in 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    spiritual-shine 4s ease-in-out forwards;
}

.motto .word:nth-child(1) { animation-delay: 0.2s; }
.motto .word:nth-child(2) { animation-delay: 0.8s; }
.motto .word:nth-child(3) { animation-delay: 1.4s; }

@keyframes float-in {
  0% { transform: translateY(15px); opacity: 0; filter: blur(8px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes spiritual-shine {
  0% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.intro {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

@media (max-width: 1024px) {
  .intro {
    margin-left: auto;
    margin-right: auto;
  }
}

/* CTA Elements */
.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .cta-group {
    flex-direction: column;
  }
}

input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #fff;
  font-family: var(--font-body);
  flex-grow: 1;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(176, 132, 204, 0.2);
}

button {
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 100%);
  color: #050505;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(176, 132, 204, 0.3);
}

/* Footer */
footer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  margin-top: auto;
}
