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

html {
  height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  min-height: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 20%, rgba(196, 30, 58, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(196, 30, 58, 0.1) 0%, transparent 50%), #0a0a0a;
  z-index: -1;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
}

header {
  padding: 32px 0;
  position: relative;
  z-index: 10;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.logo:hover {
  color: #c41e3a;
}

.coming-soon-text {
  color: #888;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

footer {
  padding: 24px 0;
  text-align: center;
  margin-top: auto;
}
footer p {
  color: #888;
  font-size: 0.85rem;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

.btn-primary {
  background: #c41e3a;
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3);
}
.btn-primary:disabled, .btn-primary.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  animation: spin 1s linear infinite;
}

.btn-text,
.btn-loading {
  display: inline-flex;
  align-items: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 420px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  text-align: center;
}
.modal-lg {
  max-width: 560px;
}
@media (max-width: 768px) {
  .modal {
    padding: 32px 24px;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.modal h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal > p {
  color: #888;
  margin-bottom: 28px;
  line-height: 1.6;
}

.notify-form {
  display: flex;
  gap: 12px;
}
.notify-form input {
  flex: 1;
}
@media (max-width: 768px) {
  .notify-form {
    flex-direction: column;
  }
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #f5f5f5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #f5f5f5;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #888;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #c41e3a;
  background: rgba(196, 30, 58, 0.05);
}
input.error,
select.error,
textarea.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}
input.valid,
select.valid,
textarea.valid {
  border-color: #22c55e;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
select option {
  background: #141414;
  color: #f5f5f5;
}

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

.field-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}
.field-error.visible {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-success,
.form-error {
  padding: 20px;
  display: none;
}
.form-success.visible,
.form-error.visible {
  display: block;
}
.form-success p,
.form-error p {
  color: #f5f5f5;
  font-size: 1.1rem;
}

.success-icon,
.error-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 16px;
}

.success-icon {
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.error-icon {
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.human-check {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom {
  background: #c41e3a;
  border-color: #c41e3a;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom::after {
  opacity: 1;
}
.checkbox-label input[type=checkbox]:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.3);
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-custom::after {
  content: "";
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.checkbox-custom:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.checkbox-text {
  color: #f5f5f5;
  font-size: 0.95rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #c41e3a;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 10px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  min-height: 0;
}
.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.hero h1 span {
  background: linear-gradient(135deg, #c41e3a 0%, rgb(227.4557522124, 75.0442477876, 100.7522123894) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.25rem;
  color: #888;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 30, 58, 0.15);
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 1rem;
  color: #c41e3a;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease forwards, badgePulse 2s ease-in-out infinite;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: #c41e3a;
  border-radius: 50%;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .cta-group {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 5px rgba(196, 30, 58, 0.2);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=main.css.map */
