* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  color: #111111;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.stage {
  position: relative;
  z-index: 2;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background: #ffffff;
}
.tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  filter: saturate(1.05);
}

/* No global blur — keep watches crisp */

@media (max-width: 820px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .tile img { padding: 8px; }
}

.card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 36px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.18);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.brand-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 600;
  color: #999;
  margin: 0 0 18px;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
h1 em {
  font-style: italic;
  color: #b8860b;
}

.lead {
  font-size: 14px;
  color: #555;
  margin: 0 0 28px;
}

.form { margin: 0; }

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
  margin-bottom: 6px;
  font-weight: 500;
}
.field input,
.field select {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 11px 13px;
  color: #111;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: #111;
  background: #fff;
}

.btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s, transform 0.1s;
  font-family: inherit;
}
.btn:hover { background: #000; }
.btn:active { transform: translateY(1px); }

.note {
  margin: 16px 0 0;
  font-size: 11px;
  color: #999;
  text-align: center;
}
.note #counterNum { color: #b8860b; font-weight: 600; }

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b0b0b0;
  margin-right: 7px;
  vertical-align: 1px;
  transition: background 0.3s;
}
.live-dot.is-live {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: live-pulse 1.8s infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.success {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fdf6e3;
  border: 1px solid #e8d49a;
  border-radius: 6px;
  font-size: 13px;
  color: #5a4a1a;
  text-align: center;
}
.success strong { display: block; margin-bottom: 4px; color: #8a6a1a; }

@media (max-width: 600px) {
  .stage { padding: 12px; align-items: center; }
  .card {
    max-width: 360px;
    padding: 22px 20px;
    border-radius: 14px;
  }
  h1 { font-size: 1.5rem; margin-bottom: 4px; }
  .eyebrow { margin-bottom: 12px; font-size: 9px; }
  .lead { font-size: 13px; margin-bottom: 18px; line-height: 1.45; }
  .row { grid-template-columns: 1fr; gap: 0; }
  .field { margin-bottom: 10px; }
  .field label { font-size: 10px; margin-bottom: 4px; }
  .field input,
  .field select { padding: 10px 12px; font-size: 14px; }
  .btn { padding: 12px; margin-top: 4px; font-size: 13px; }
  .note { font-size: 10px; margin-top: 12px; line-height: 1.4; }
  .success { padding: 12px 14px; font-size: 12px; }
}
