@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap");

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

:root {
  --gold: #d4a84b;
  --gold-lt: #f0c96b;
  --red: #e03e3e;
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --bg3: #13131f;
  --text: #e8e8f0;
  --muted: #7878a0;
  --border: rgba(212, 168, 75, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  padding: 22px 24px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

.logo-text {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.urgency-bar {
  background: linear-gradient(90deg, #1a0a0a, var(--red), #1a0a0a);
  text-align: center;
  padding: 10px 16px;
  font-family: "Unbounded", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  animation: pulse-bar 3s ease-in-out infinite;
}

@keyframes pulse-bar {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

.urgency-bar .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
  animation: blink 1.2s ease infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.main {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 75, 0.1);
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.4s ease infinite;
}

.headline {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheadline {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 10px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.25s ease both;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 15px;
}

.proof-text {
  font-size: 13px;
  color: var(--muted);
}

.proof-text strong {
  color: var(--text);
  font-weight: 500;
}

.viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4caf50;
  font-weight: 500;
}

.viewers::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 8px #4caf50;
  animation: blink 1.8s ease infinite;
}

.video-wrap {
  position: relative;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 168, 75, 0.06);
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.video-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 75, 0.2),
    transparent 40%,
    rgba(212, 168, 75, 0.08)
  );
  pointer-events: none;
  z-index: 2;
}

.video-caption {
  padding: 12px 20px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
}

.spots-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.35s ease both;
}

.spots-left {
  font-size: 13px;
  color: var(--muted);
}

.spots-left strong {
  font-size: 18px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  color: var(--red);
  display: block;
}

.spots-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.spots-bar-fill {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--red), #ff6b6b);
  border-radius: 100px;
  animation: fillBar 1.8s 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: 30%;
  }
}

.spots-deadline {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}

.spots-deadline strong {
  display: block;
  color: var(--text);
  font-size: 13px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s 0.4s ease both;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-title {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  width: 100%;
}

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

input:focus,
select:focus {
  border-color: rgba(212, 168, 75, 0.5);
  background: rgba(212, 168, 75, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%237878A0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select option {
  background: #1a1a2e;
}

.btn-submit {
  margin-top: 24px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border: none;
  border-radius: 12px;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(212, 168, 75, 0.3);
}

.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 168, 75, 0.45);
}

.btn-submit:hover::before {
  opacity: 1;
}
.btn-submit:active {
  transform: translateY(0);
}

.btn-submit .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.2s;
}

.btn-submit:hover .arrow {
  transform: translateX(4px);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.trust-item svg {
  opacity: 0.6;
}

.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a4a1a, #2d7a2d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #4caf50;
  font-size: 28px;
}

.form-card.submitted .form-inner {
  display: none;
}
.form-card.submitted .success-msg {
  display: flex;
}

.site-footer {
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--gold);
}

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

@media (max-width: 600px) {
  .main {
    padding: 40px 16px 60px;
  }
  .form-card {
    padding: 28px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: 1;
  }
  .spots-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .spots-bar-track {
    width: 100%;
  }
  .spots-deadline {
    text-align: left;
  }
  .trust-row {
    gap: 12px;
  }
  .social-proof {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
  background: #000;
  aspect-ratio: 16/9;
}

.success-title {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.success-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

.footer-links {
  margin-top: 6px;
}
