:root {
  --bg: #111211;
  --soft: #1b1c1b;
  --text: #f2f0e9;
  --muted: #b5b5aa;
  --blue: #2056de;
  --orange: #ff6a2c;
  --line: #45463f;
  --body: "Roboto", Arial, sans-serif;
  --display: "Anton", "Arial Narrow", sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
[hidden] {
  display: none !important;
}
*:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}
h1:focus,
h2:focus {
  outline: none;
}
.masthead {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: var(--text);
  color: var(--bg);
  position: relative;
  z-index: 5;
}
.masthead img {
  width: 170px;
  height: auto;
}
.masthead > span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.progress {
  height: 3px;
  background: var(--line);
  position: relative;
  z-index: 6;
}
.progress__fill {
  height: 100%;
  width: 0;
  background: var(--blue);
  transition: width 0.3s ease;
}
.screen {
  display: none;
}
.screen.is-active {
  display: flex;
  flex-direction: column;
  animation: appear 0.35s ease both;
}
.screen__inner {
  width: 100%;
  padding: 25px 24px 32px;
}
.art {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.art > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.art-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: white;
  text-shadow: 0 1px 5px #000;
}
.art--hero {
  height: clamp(220px, 34svh, 320px);
}
.art--hero img {
  object-position: 50% 43%;
}
.art--hero:after {
  content: "";
  position: absolute;
  inset: 70% 0 0;
  background: linear-gradient(transparent, #0007);
  z-index: -0;
  pointer-events: none;
}
.art-caption {
  z-index: 1;
}
.venue {
  margin: 0 0 13px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}
.venue:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  margin-right: 8px;
  vertical-align: 1px;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  line-height: 1.03;
  margin: 0 0 19px;
}
h1 {
  font-size: clamp(39px, 11.1vw, 56px);
}
h1 span,
h2 span {
  color: var(--orange);
}
.lead {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 22px;
}
.btn-primary {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.btn-primary span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.btn-primary:active {
  transform: translateY(2px);
}
.footnote {
  font-size: 8px;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin: 13px 0 0;
}
.screen--intro .screen__inner {
  padding-top: 24px;
}
.art--questions {
  height: 88px;
}
.art--questions img {
  object-position: 50% 44%;
}
.art--questions .art-caption {
  bottom: 12px;
}
.art-title {
  display: none;
}
.step-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 22px;
  color: var(--muted);
}
.step-heading > span {
  font-size: 8px;
  letter-spacing: 0.08em;
}
.back-btn {
  min-height: 32px;
  background: none;
  border: 0;
  padding: 0 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.screen--form .screen__inner {
  padding-top: 15px;
}
h2 {
  font-size: clamp(32px, 9.5vw, 44px);
  margin-bottom: 20px;
}
.stars {
  display: flex;
  gap: 6px;
  margin: 0 0 9px;
}
.star {
  flex: 1;
  min-width: 44px;
  min-height: 54px;
  border: 1px solid var(--line);
  background: transparent;
  color: #a5a69b;
  font-size: 37px;
  line-height: 1;
  padding: 5px 0;
  transition:
    color 0.15s,
    background 0.15s,
    transform 0.15s;
}
.star.is-filled {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bg);
}
.star:active {
  transform: rotate(-5deg);
}
.field-hint {
  color: #ffab85;
  font-size: 12px;
  margin: 10px 0;
}
h3 {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  margin: 26px 0 4px;
}
.selection-hint {
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 14px;
}
.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 22px;
}
.chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: left;
  min-height: 48px;
  background: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.35;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.chip:after {
  content: "+";
  font-size: 18px;
  color: var(--muted);
}
.chip.is-selected {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.chip.is-selected:after {
  content: "✓";
  color: #fff;
}
.field-label {
  display: block;
  font-size: 12px;
  color: var(--text);
  margin: 0 0 8px;
}
.field-label span {
  color: var(--muted);
}
.textarea,
.text-input {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #737469;
  border-radius: 0;
  background: var(--soft);
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
  padding: 12px;
  margin: 0 0 17px;
  resize: vertical;
}
.textarea::placeholder,
.text-input::placeholder {
  color: #a4a59a;
  font-size: 14px;
}
.textarea {
  min-height: 100px;
}
.textarea--short {
  min-height: 76px;
}
.textarea:focus,
.text-input:focus {
  outline: 1px solid var(--orange);
  outline-offset: 0;
  border-color: var(--orange);
}
.screen--form .btn-primary {
  margin-top: 22px;
}
.lead--tight {
  margin: -4px 0 22px;
  font-size: 13px;
}
.share-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
  min-height: 30px;
}
.share-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--blue);
}
.btn-text {
  display: block;
  width: 100%;
  min-height: 44px;
  border: 0;
  background: none;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 12px;
  margin-top: 8px;
  padding: 10px;
}
.error-msg {
  color: #ffab85;
  border-left: 2px solid var(--orange);
  padding-left: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin: 16px 0 0;
}
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.art--thanks {
  height: 300px;
  background: #e4e4e6;
}
.art--thanks img {
  object-position: 50% 8%;
}
.art--thanks .art-caption {
  color: #111;
  text-shadow: none;
}
.screen--thanks h2 {
  font-size: clamp(46px, 13vw, 65px);
}
.thanks-title {
  font-size: 17px;
  margin: 24px 0 9px;
}
.brand-footer {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: 38px;
}
.brand-footer__by {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.brand-footer a {
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.brand-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #1648c4;
  }
  .chip:hover {
    border-color: var(--orange);
  }
  .star:hover {
    border-color: var(--orange);
    color: var(--orange);
  }
  .star.is-filled:hover {
    color: var(--bg);
  }
}
@media (min-width: 700px) {
  .masthead {
    height: 76px;
    padding: 0 40px;
  }
  .masthead img {
    width: 240px;
  }
  .masthead > span {
    font-size: 10px;
  }
  .screen.is-active {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: calc(100svh - 79px);
    align-items: stretch;
  }
  .art {
    height: auto;
    min-height: calc(100svh - 79px);
  }
  .art > img {
    position: absolute;
    inset: 0;
  }
  .art--hero img {
    object-position: 50% 50%;
  }
  .screen__inner {
    align-self: center;
    padding: 45px clamp(32px, 5vw, 88px);
    max-width: 790px;
  }
  .screen--intro .screen__inner {
    padding-top: 45px;
  }
  .screen--form .screen__inner {
    padding-top: 28px;
    padding-bottom: 35px;
  }
  .screen--intro h1 {
    font-size: clamp(52px, 6.2vw, 96px);
  }
  .venue {
    font-size: 11px;
    margin-bottom: 23px;
  }
  .lead {
    font-size: 16px;
  }
  .art-caption {
    left: 30px;
    right: 30px;
    bottom: 25px;
    font-size: 10px;
  }
  .art--questions img {
    object-position: 50% 50%;
  }
  .art-title {
    display: block;
    position: absolute;
    left: 30px;
    bottom: 65px;
    font-family: var(--display);
    font-size: clamp(46px, 6vw, 84px);
    line-height: 1.02;
    color: var(--text);
    margin: 0;
    text-shadow: 0 2px 24px #0004;
  }
  .art--questions:after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(transparent, #0008);
    z-index: -0;
    pointer-events: none;
  }
  .art-title {
    z-index: 1;
  }
  .step-heading {
    margin-bottom: 20px;
  }
  h2 {
    font-size: clamp(36px, 4vw, 57px);
  }
  .step-heading > span {
    font-size: 9px;
  }
  .stars {
    max-width: 380px;
  }
  .star {
    min-height: 60px;
    font-size: 40px;
  }
  .chip {
    font-size: 13px;
  }
  .screen--thanks h2 {
    font-size: clamp(55px, 6vw, 88px);
  }
  .art--thanks img {
    object-position: 50% 20%;
  }
  .footnote {
    margin-top: 18px;
    font-size: 9px;
  }
  .brand-footer {
    margin-top: 70px;
  }
  .art--thanks {
    min-height: calc(100svh - 79px);
  }
}
@media (min-width: 1400px) {
  .screen__inner {
    padding-left: 90px;
    padding-right: 90px;
  }
  .screen--form .screen__inner {
    max-width: 760px;
  }
}
@media (max-width: 699px) and (max-height: 740px) {
  .art--hero {
    height: 205px;
  }
  .screen--intro .screen__inner {
    padding-top: 18px;
    padding-bottom: 20px;
  }
  .screen--intro h1 {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .screen--intro .lead {
    margin-bottom: 16px;
  }
  .masthead {
    height: 56px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
