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

html, body {
  min-height: 100vh;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(to bottom left, #27133A 13%, #0D0A19 100%);
  color: #D2C6FF;
  min-height: 100vh;
}

.text-shadow {
  text-shadow: 4px 8px 21.8px rgba(217, 217, 217, 0.5);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Landing Page */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  user-select: none;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  cursor: pointer;
  filter: drop-shadow(1px 3.3px 15px rgba(130, 46, 254, 0.5)) drop-shadow(1px 3.3px 40px rgba(130, 46, 254, 0.3));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(130, 46, 254, 0.9)) drop-shadow(0 0 70px rgba(130, 46, 254, 0.6));
}

.landing h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 300;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.coming-soon {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(210, 198, 255, 0.3);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #D2C6FF;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Page Layout */
.page {
  min-height: 100vh;
  padding: 4rem 2rem;
}

.page-header {
  margin-bottom: 3rem;
}

.page-header .logo-small {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.page-header a {
  color: #D2C6FF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  font-size: 0.9rem;
}

.page-header a:hover {
  opacity: 1;
}

.page h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.page h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page p {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 700px;
}

.page a {
  color: #D2C6FF;
}

.page ul {
  list-style: none;
  margin-bottom: 1rem;
}

.page ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.page ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #D2C6FF;
  border-radius: 50%;
  opacity: 0.5;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(210, 198, 255, 0.05);
  border: 1px solid rgba(210, 198, 255, 0.2);
  border-radius: 8px;
  color: #D2C6FF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(210, 198, 255, 0.5);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(210, 198, 255, 0.4);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: rgba(210, 198, 255, 0.1);
  border: 1px solid rgba(210, 198, 255, 0.3);
  border-radius: 8px;
  color: #D2C6FF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  background: rgba(210, 198, 255, 0.15);
  border-color: rgba(210, 198, 255, 0.5);
}

.contact-email {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(210, 198, 255, 0.1);
}

.contact-email a {
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
