:root {
  --bg: #030303;
  --ink: #ffffff;
  --stone: #bebebe;
  --line: rgba(190, 190, 190, 0.15);
  --accent: #ff2e00;
}

* {
  box-sizing: border-box;
}

body.wl-body {
  margin: 0;
  background: var(--bg);
  color: var(--stone);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--line);
}

.wl-logo {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 22px;
  text-transform: uppercase;
}

.wl-back {
  color: var(--stone);
  text-decoration: none;
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.wl-back:hover {
  color: var(--ink);
  border-color: var(--stone);
}

.wl-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.wl-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.wl-kicker {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 20px;
}

.wl-title {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  font-size: clamp(40px, 8vw, 76px);
  line-height: 0.95em;
  margin: 0 0 20px;
  -webkit-text-stroke: 0;
}

.wl-lede {
  font-size: 18px;
  line-height: 1.6em;
  color: var(--stone);
  margin: 0 0 36px;
}

.wl-lede strong {
  color: var(--ink);
}

.wl-countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.wl-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(190, 190, 190, 0.05);
}

.wl-countdown-num {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 800;
  color: var(--ink);
  font-size: 28px;
  line-height: 1em;
}

.wl-countdown-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
}

.wl-countdown-live {
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 32px;
}

@media (max-width: 480px) {
  .wl-countdown {
    gap: 8px;
  }
  .wl-countdown-unit {
    min-width: 50px;
    padding: 10px 6px;
  }
  .wl-countdown-num {
    font-size: 22px;
  }
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.wl-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(190, 190, 190, 0.05);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
}

.wl-input::placeholder {
  color: rgba(190, 190, 190, 0.6);
}

.wl-input:focus {
  outline: none;
  border-color: var(--accent);
}

.wl-submit {
  margin-top: 6px;
  padding: 16px 24px;
  border-radius: 100px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.wl-submit:hover {
  opacity: 0.85;
}

.wl-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wl-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wl-message {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
}

.wl-message.is-success {
  color: var(--ink);
}

.wl-message.is-error {
  color: var(--accent);
}

.wl-footer {
  padding: 24px 32px;
  text-align: center;
  font-size: 13px;
  color: rgba(190, 190, 190, 0.6);
  border-top: 1px solid var(--line);
}

.wl-footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin: 0 0 10px;
}

.wl-footer-legal a {
  color: rgba(190, 190, 190, 0.6);
  text-decoration: none;
}

.wl-footer-legal a:hover {
  color: var(--stone);
  text-decoration: underline;
}

.wl-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 13px;
  line-height: 1.5em;
  color: var(--stone);
  margin: 4px 0 0;
}

.wl-consent input[type="checkbox"] {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.wl-consent a {
  color: var(--stone);
  text-decoration: underline;
}

.wl-consent a:hover {
  color: var(--ink);
}

.wl-legal {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 56px 24px 80px;
}

.wl-legal h1 {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1em;
  margin: 0 0 8px;
}

.wl-legal .wl-legal-updated {
  font-size: 13px;
  color: rgba(190, 190, 190, 0.6);
  margin: 0 0 36px;
}

.wl-legal h2 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  margin: 36px 0 12px;
}

.wl-legal p,
.wl-legal li {
  font-size: 15px;
  line-height: 1.7em;
  color: var(--stone);
  margin: 0 0 14px;
}

.wl-legal ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.wl-legal a {
  color: var(--ink);
  text-decoration: underline;
}

.wl-legal strong {
  color: var(--ink);
}
