:root {
  --ink: #101114;
  --muted: #667077;
  --paper: #f6f8f8;
  --line: #e0e5e5;
  --pink: #ff0a85;
  --orange: #ff8a00;
  --green: #00843d;
  --blue: #315b84;
  --radius: 8px;
  --shadow: 0 18px 40px rgba(20, 24, 28, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}
a { color: inherit; }
.site-header {
  background: #070707;
  color: #fff;
}
.top-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px 0;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
}
.hero-pattern {
  min-height: 154px;
  background-color: #111;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.07) 8px, transparent 8px),
    linear-gradient(rgba(255,255,255,.055) 8px, transparent 8px);
  background-size: 48px 32px;
}
.hero-inner {
  max-width: 1180px;
  min-height: 154px;
  margin: 0 auto;
  padding: 32px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  font-size: clamp(36px, 6vw, 76px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.brand span { color: var(--pink); display: block; }
.brand small { color: var(--orange); font-size: .33em; margin-left: 8px; }
.hero-link { font-size: 22px; font-weight: 900; text-decoration: none; }
.subbar {
  background: #f2f5f5;
  border-bottom: 1px solid var(--line);
}
.subbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  color: #93a0a6;
  font-weight: 700;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 22px 72px;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}
.headline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  text-transform: uppercase;
}
.headline h1, .headline h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: .95;
  font-weight: 950;
}
.slash { height: 22px; background: repeating-linear-gradient(135deg, transparent 0 10px, #e6eded 10px 12px, transparent 12px 18px); }
.event-card h3 {
  color: var(--pink);
  margin: 0 0 28px;
  font-size: 28px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.event-card p { color: var(--muted); font-size: 20px; margin: 10px 0; }
.event-card strong { color: var(--ink); }
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.intro-panel {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
}
.intro-panel p { color: var(--muted); font-size: 24px; margin: 0 0 26px; }
.btn {
  appearance: none;
  border: 0;
  border-radius: 5px;
  background: #2d343d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 850;
  font-size: 17px;
  text-decoration: none;
  cursor: pointer;
}
.btn-pink { background: var(--pink); }
.btn-muted { background: #9aa6a8; }
.step {
  height: 46px;
  margin-bottom: 18px;
  background: #f3f7f7;
  border-radius: 5px;
  overflow: hidden;
}
.step span {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.field label {
  display: block;
  color: #687277;
  font-weight: 850;
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8dddd;
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
.span-2 { grid-column: span 2; }
.error { color: #b42318; font-size: 14px; margin-top: 6px; font-weight: 700; }
.actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 28px; }
.review-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.readonly {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
}
.success-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
}
.badge-preview {
  aspect-ratio: 2 / 3;
  background: #111;
  color: #fff;
  border-radius: 6px;
  padding: 28px;
  transform: rotate(9deg);
  display: grid;
  align-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-preview .mark { font-size: 42px; line-height: .9; font-weight: 950; text-transform: uppercase; }
.badge-preview .mark span { color: var(--pink); display: block; }
.info-box {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 22px;
  margin-top: 22px;
}
.footer {
  background: #f2f5f5;
  border-bottom: 4px solid var(--orange);
  padding: 30px 22px;
  text-align: center;
  color: #333;
}
.alert { padding: 14px 16px; border-radius: 5px; margin-bottom: 18px; font-weight: 800; }
.alert-ok { background: var(--orange); color: #fff; }
.alert-error { background: #fee4e2; color: #912018; }

@media (max-width: 820px) {
  .two-col, .success-grid { grid-template-columns: 1fr; }
  .event-card { order: -1; }
  .form-grid, .review-row { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .hero-inner { align-items: flex-start; flex-direction: column; }
  .hero-link { font-size: 18px; }
  .wrap { padding-top: 34px; }
  .headline { grid-template-columns: 1fr; }
  .slash { display: none; }
}

@media print {
  body { background: #fff; }
  .no-print { display: none !important; }
}
