@font-face {
  font-family: 'Neue Haas Unica';
  src: url('./fonts/NeueHaasUnicaPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Unica';
  src: url('./fonts/Neue_Haas_Unica_W06_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background: #f3f8ff;
  color: hsl(248 100% 34%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #f3f8ff;
}

.orb-bg canvas {
  position: absolute;
  inset: 0;
}

#asciiCanvas {
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 2;
  color: hsl(248 100% 34%);
  text-decoration: none;
  transition: opacity 0.2s;
  display: block;
  margin: 0 auto 16px;
  text-align: center;
}

.logo svg {
  width: 140px;
  height: auto;
  display: inline-block;
}

.logo:hover {
  opacity: 0.7;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: 20px;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}

.hero-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

.description {
  background: hsl(0 0% 100% / 0.75);
  backdrop-filter: blur(8px);
  padding: 18px 20px;
  border-radius: 14px;
}

.tagline {
  font-size: 15px;
  font-weight: 700;
  color: hsl(248 100% 34%);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.description-text {
  font-size: 16px;
  font-weight: 300;
  color: hsl(248 100% 34%);
  line-height: 1.7;
}

.field {
  margin-bottom: 20px;
}

.optional {
  font-weight: 300;
  color: hsl(248 100% 34% / 0.4);
  font-size: 12px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: hsl(248 100% 34%);
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  background: hsl(0 0% 100% / 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(205 30% 80%);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: hsl(248 100% 34%);
  transition: border-color 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: hsl(248 100% 34%);
}

input::placeholder,
textarea::placeholder {
  color: hsl(248 100% 34% / 0.35);
}

textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: hsl(248 100% 34%);
  color: hsl(0 0% 100%);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.85;
}

.success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: hsl(248 70% 60%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.success h2 {
  font-size: 20px;
  font-weight: 700;
  color: hsl(248 100% 34%);
  margin-bottom: 8px;
}

.success p {
  color: hsl(248 100% 34% / 0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

.reset-btn {
  padding: 10px 24px;
  background: transparent;
  color: hsl(248 100% 34%);
  border: 1px solid hsl(205 30% 80%);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Neue Haas Unica', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  cursor: pointer;
  transition: border-color 0.2s;
}

.reset-btn:hover {
  border-color: hsl(248 100% 34%);
}

.hidden {
  display: none;
}
