* { box-sizing: border-box; margin: 0; }
:root {
  --bg: #0c0b0a;
  --ink: #f3efe8;
  --muted: #a8a198;
  --accent: #e8392b;
  --accent-dark: #c92d21;
  --line: #2c2823;
  --field: #1a1815;
}
body {
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.page { max-width: 720px; margin: 0 auto; padding: 52px 20px 80px; }

.hero { text-align: center; }
.hero h1 { font-size: clamp(28px, 5.4vw, 40px); line-height: 1.22; font-weight: 650; letter-spacing: -0.01em; }
.hero-lines { margin-top: 20px; font-size: 19px; color: var(--muted); }

.video-block { margin-top: 36px; }
.video-note { margin-top: 30px; text-align: center; font-size: 20px; line-height: 1.75; color: #c9c3bb; }

.player {
  position: relative; overflow: hidden; background: #000;
  width: 100vw; margin-left: calc(50% - 50vw);
}
.player video { display: block; width: 100%; aspect-ratio: 16/9; }
.cover-loop { position: absolute; inset: 0; height: 100%; object-fit: cover; pointer-events: none; }
.big-play {
  position: absolute; inset: 0; width: 100%; border: 0; cursor: pointer;
  background: transparent; color: #fff;
  display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; letter-spacing: .02em;
  z-index: 3;
}
.play-rect {
  display: flex; align-items: center; justify-content: center;
  width: 124px; height: 76px; border-radius: 4px;
  background: rgba(226, 54, 40, .7); color: #fff;
  transition: background .2s;
}
.big-play:hover .play-rect { background: rgba(193, 36, 24, .9); }
.play-hint { display: none; }
.sound-badge {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0,0,0,.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.sound-badge svg { width: 26px; height: 26px; }
.sound-badge .w1 { animation: wavefade 1.6s infinite; }
.sound-badge .w2 { animation: wavefade 1.6s infinite .3s; }
@keyframes wavefade {
  0%, 100% { opacity: .12; }
  45% { opacity: 1; }
}
.bar { display: none; }
.bar-btn {
  border: 0; background: rgba(255,255,255,.16); color: #fff; cursor: pointer;
  border-radius: 8px; padding: 6px 10px; font-size: 13px; display: flex; align-items: center;
}
.bar-btn:hover { background: rgba(255,255,255,.3); }
.time { font-size: 13px; font-variant-numeric: tabular-nums; }
.bar-spacer { flex: 1; }
.progress { display: none; }

.hidden { display: none !important; }

.cta-block { margin-top: 26px; text-align: center; }
.cta-btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  background: #c2563c; color: #fff;
  font-size: 19px; font-weight: 500; letter-spacing: .01em;
  padding: 20px 58px; border-radius: 6px;
  box-shadow: 0 8px 26px rgba(0,0,0,.3);
  transition: background .2s;
}
.cta-btn:hover { background: #a8462f; }

.form-block { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line); }
.form-block h2, .thanks h2 { font-size: 26px; font-weight: 650; }
.form-intro { margin: 12px 0 26px; color: var(--muted); }
form label { display: block; margin: 18px 0 0; font-weight: 600; font-size: 15px; }
form input[type="text"], form input[type="email"], form select, form textarea {
  display: block; width: 100%; margin-top: 7px;
  font: inherit; color: var(--ink);
  background: var(--field); border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px;
}
form input:focus, form select:focus, form textarea:focus {
  outline: 2px solid var(--accent); outline-offset: 0; border-color: transparent;
}
.field-hint { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
fieldset { border: 0; padding: 0; margin: 24px 0 0; }
legend { font-weight: 600; font-size: 15px; padding: 0; margin-bottom: 4px; }
.check { display: flex; gap: 9px; align-items: center; font-weight: 400 !important; margin-top: 9px !important; font-size: 16px !important; }
.check input { width: 17px; height: 17px; accent-color: var(--accent); }
.submit { margin-top: 30px; width: 100%; }
.form-error { color: #ff8c80; margin-top: 14px; font-size: 15px; }

.thanks { margin-top: 56px; padding: 28px; background: var(--field); border: 1px solid var(--line); border-radius: 14px; }
.thanks p { margin-top: 10px; color: var(--muted); }

.foot { margin-top: 72px; text-align: center; font-size: 13.5px; color: var(--muted); }

@media (max-width: 560px) {
  .page { padding-top: 32px; }
  body { font-size: 16px; }
}
