/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #0EA5E9;
  --indigo:  #6366F1;
  --violet:  #8B5CF6;
  --cyan:    #06B6D4;
  --white:   #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100:#F1F5F9;
  --gray-300:#CBD5E1;
  --gray-500:#64748B;
  --gray-700:#334155;
  --gray-900:#0F172A;
  --radius:  14px;
  --shadow:  0 20px 60px rgba(14,165,233,.15), 0 4px 16px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 40%, #0C4A6E 100%);
  min-height: 100vh;
  color: var(--white);
  overflow-x: hidden;
}

/* ===== Particles ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: .12;
}
.particles span:nth-child(1)  { width:80px;  height:80px;  left:10%; background:var(--blue);   animation-duration:18s; animation-delay:0s;   top:20%; }
.particles span:nth-child(2)  { width:120px; height:120px; left:80%; background:var(--indigo); animation-duration:24s; animation-delay:3s;   top:10%; }
.particles span:nth-child(3)  { width:60px;  height:60px;  left:55%; background:var(--cyan);   animation-duration:16s; animation-delay:6s;   top:60%; }
.particles span:nth-child(4)  { width:100px; height:100px; left:25%; background:var(--violet); animation-duration:20s; animation-delay:1s;   top:75%; }
.particles span:nth-child(5)  { width:50px;  height:50px;  left:70%; background:var(--blue);   animation-duration:14s; animation-delay:9s;   top:40%; }
.particles span:nth-child(6)  { width:90px;  height:90px;  left:5%;  background:var(--cyan);   animation-duration:22s; animation-delay:4s;   top:50%; }
.particles span:nth-child(7)  { width:40px;  height:40px;  left:90%; background:var(--indigo); animation-duration:13s; animation-delay:7s;   top:85%; }
.particles span:nth-child(8)  { width:70px;  height:70px;  left:45%; background:var(--violet); animation-duration:19s; animation-delay:2s;   top:5%;  }
.particles span:nth-child(9)  { width:55px;  height:55px;  left:35%; background:var(--blue);   animation-duration:17s; animation-delay:11s;  top:90%; }
.particles span:nth-child(10) { width:85px;  height:85px;  left:60%; background:var(--cyan);   animation-duration:25s; animation-delay:5s;   top:30%; }

@keyframes float {
  0%   { transform: translateY(0)   rotate(0deg);   }
  50%  { transform: translateY(-60px) rotate(180deg); }
  100% { transform: translateY(0)   rotate(360deg); }
}

/* ===== Layout ===== */
.wrapper {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ===== Header ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-icon svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 4px 12px rgba(14,165,233,.4));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badges { display: flex; gap: .5rem; flex-wrap: wrap; }

.badge {
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.badge-nice   { background: rgba(14,165,233,.2);  color: #7DD3FC; }
.badge-monaco { background: rgba(239,68,68,.2);   color: #FCA5A5; }

/* ===== Hero ===== */
.hero { display: flex; flex-direction: column; gap: 1.75rem; }

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,.4);
  background: rgba(99,102,241,.12);
  color: #A5B4FC;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A5B4FC;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--white);
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 600px;
}
.hero-subtitle strong { color: var(--white); font-weight: 600; }

/* ===== Pills ===== */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .875rem;
  font-weight: 500;
  color: #CBD5E1;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, transform .2s;
}
.pill:hover {
  background: rgba(14,165,233,.15);
  border-color: rgba(14,165,233,.3);
  transform: translateY(-2px);
}
.pill-icon { font-size: 1rem; }

/* ===== Form Card ===== */
.form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.form-card-header { margin-bottom: 1.75rem; }
.form-card-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--white);
}
.form-card-header p {
  font-size: .9rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* ===== Form Elements ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1rem;
}

label {
  font-size: .8rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: .04em;
  text-transform: uppercase;
}

input, select, textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: #475569; }

select option { background: #1E293B; color: var(--white); }

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  background: rgba(14,165,233,.08);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}

input.error, select.error, textarea.error {
  border-color: #F87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.15);
}

textarea { resize: vertical; min-height: 110px; }

/* ===== Form Footer ===== */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .5rem;
}

.direct-email {
  font-size: .875rem;
  color: #64748B;
}
.direct-email a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.direct-email a:hover { color: var(--cyan); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: var(--white);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 4px 20px rgba(14,165,233,.35);
  white-space: nowrap;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,165,233,.45);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-icon {
  transition: transform .2s;
  display: inline-block;
}
.btn-submit:hover .btn-icon { transform: translateX(4px); }

/* ===== Success Message ===== */
.success-message {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  margin-top: 1.25rem;
  animation: fadeIn .4s ease;
}
.success-message[hidden] { display: none; }
.success-icon { font-size: 1.5rem; }
.success-message p { font-size: .9rem; color: #86EFAC; line-height: 1.5; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  font-size: .8rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer strong { color: #64748B; }
.footer-links { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.footer-links a {
  color: #64748B;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--blue); }
.sep { color: #334155; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .wrapper { padding: 1.5rem 1rem 3rem; }
  .form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .btn-submit { width: 100%; justify-content: center; }
  .hero-title { font-size: 1.9rem; }
}
