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

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

:root {
  --red: #e8201a;
  --red-dk: #a01510;
  --orange: #ff6b2b;
  --bg: #0c0c0c;
  --bg2: #131313;
  --bg3: #1a1a1a;
  --text: #f0f0f0;
  --muted: #888;
  --border: rgba(232, 32, 26, 0.2);
}

html {
  scroll-behavior: smooth;
}

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

body::after {
  content: "";
  position: fixed;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(
    ellipse,
    rgba(232, 32, 26, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.urgency-bar {
  background: var(--red);
  text-align: center;
  padding: 8px 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.urgency-bar .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
  animation: blink 1.1s ease infinite;
}

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

.site-header {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
}

.logo-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
}

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

.main {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 32px 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 5px 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease both;
}

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

.headline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.5s 0.06s ease both;
}

.headline em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.subheadline {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 10px;
  animation: fadeUp 0.5s 0.12s ease both;
}

.slash-divider {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 24px 0 32px;
  animation: fadeUp 0.5s 0.16s ease both;
}

.slash-divider span {
  color: var(--red);
  margin: 0 10px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.2s ease both;
}

.stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
}
.proof-text {
  font-size: 13px;
  color: var(--muted);
}
.proof-text strong {
  color: var(--text);
}

.viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4caf50;
}
.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;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
  animation: fadeUp 0.5s 0.26s ease both;
}

.video-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dk), var(--red), var(--orange));
  z-index: 2;
}

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

.video-caption {
  padding: 12px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-row {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  animation: fadeUp 0.5s 0.3s ease both;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 1;
}

.status-pill strong {
  font-size: 22px;
  color: var(--text);
  font-weight: 900;
  margin-right: 4px;
}

.status-pill.danger strong {
  color: var(--red);
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.form-card {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.5s 0.34s ease both;
}

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

.form-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.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-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

input:focus {
  border-color: rgba(232, 32, 26, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 32, 26, 0.1);
}

.btn-submit {
  margin-top: 26px;
  width: 100%;
  padding: 18px 24px;
  background: var(--red);
  border: none;
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.btn-submit:hover {
  background: #c41a14;
  transform: translateY(-1px);
}
.btn-submit:active {
  transform: translateY(0);
}

.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: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.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: rgba(232, 32, 26, 0.12);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--red);
}

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

.success-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.site-footer {
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  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(--red);
}
.footer-links {
  margin-top: 6px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  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;
  }
  .status-row {
    flex-direction: column;
  }
  .headline {
    font-size: 20px;
  }
}
