:root {
  --red: #ed111c;
  --red-bright: #ff3038;
  --black: #080808;
  --panel: #111111;
  --line: rgba(255, 255, 255, 0.13);
  --muted: #9b9b9b;
  --white: #f7f7f5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(237, 17, 28, 0.11), transparent 38%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.022) 80px),
    var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 13% 18%, rgba(237, 17, 28, 0.22), transparent 24%),
    linear-gradient(155deg, transparent 47%, rgba(237, 17, 28, 0.07) 48%, transparent 49%);
}

a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1240px, calc(100% - 48px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; }
.brand img {
  width: 188px;
  height: 76px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 15px rgba(237, 17, 28, 0.24));
}

.registration-live {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d1d1d1;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.registration-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 18px var(--red-bright);
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 70px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: 70px;
  align-items: center;
}

.eyebrow, .card-kicker {
  margin: 0 0 20px;
  color: var(--red-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(64px, 8.6vw, 126px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 950;
}

h1 span { color: var(--red); }

.lead {
  max-width: 660px;
  margin: 42px 0 0;
  color: #b6b6b6;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.facts {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 0.8fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div { padding: 22px 16px 24px 0; display: grid; gap: 9px; }
.facts div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.facts small { color: #777; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.facts strong { font-size: 14px; text-transform: uppercase; }

.registration-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(237, 17, 28, 0.72);
  background: linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(9, 9, 9, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.registration-card::before {
  content: "X";
  position: absolute;
  right: -22px;
  top: -70px;
  color: rgba(237, 17, 28, 0.07);
  font-size: 290px;
  font-weight: 950;
  line-height: 1;
}

.card-index { position: absolute; top: 22px; right: 25px; color: #606060; font-family: monospace; font-size: 12px; }

.registration-card h2 {
  position: relative;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.card-copy { position: relative; max-width: 400px; margin: 22px 0 30px; color: #8f8f8f; font-size: 14px; line-height: 1.6; }
form { position: relative; display: grid; gap: 19px; }

label {
  display: grid;
  gap: 10px;
  color: #858585;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #303030;
  outline: none;
  padding: 15px 16px;
  color: var(--white);
  background: #0b0b0b;
  font-family: inherit;
  font-size: 15px;
  text-transform: none;
  letter-spacing: normal;
}

textarea { resize: vertical; min-height: 98px; line-height: 1.5; }
select { appearance: none; cursor: pointer; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(237, 17, 28, 0.12); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px 15px; }
.field-wide { grid-column: 1 / -1; }

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 11px;
  color: #8e8e8e;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--red); }
.form-message { margin: 0; padding: 12px 14px; font-size: 12px; line-height: 1.5; }
.form-message.error { border: 1px solid rgba(255, 48, 56, 0.55); color: #ff989d; background: rgba(237, 17, 28, 0.08); }
button:disabled { cursor: wait; opacity: 0.65; transform: none; }

.success-box { position: relative; padding: 26px 0 4px; }
.success-box > span { color: var(--red-bright); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.success-box h3 { margin: 18px 0 14px; font-size: 36px; line-height: 0.95; letter-spacing: -0.04em; }
.success-box p { margin: 0 0 26px; color: #a0a0a0; font-size: 14px; line-height: 1.6; }
.success-box button { width: 100%; }

button {
  min-height: 54px;
  margin-top: 5px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

button:hover { background: #ff2630; transform: translateY(-1px); }
.secure-note { position: relative; margin: 19px 0 0; color: #636363; font-size: 11px; text-align: center; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { padding-top: 24px; }
  .registration-card { max-width: 620px; }
}

@media (max-width: 560px) {
  .site-header, .hero { width: min(100% - 28px, 1240px); }
  .site-header { min-height: 76px; }
  .brand img { width: 142px; height: 62px; }
  .registration-live { max-width: 110px; font-size: 8px; line-height: 1.5; }
  .hero { min-height: auto; padding: 58px 0 48px; }
  h1 { font-size: clamp(56px, 20vw, 86px); }
  .lead { margin-top: 30px; }
  .facts { grid-template-columns: 1fr; }
  .facts div, .facts div + div { padding: 17px 0; border-left: 0; }
  .facts div + div { border-top: 1px solid var(--line); }
  .registration-card { padding: 30px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
}
