:root {
  --flipside-red: #ff2d33;
  --flipside-red-dark: #d1252a;
  --charcoal: #111111;
  --near-black: #0a0a0a;
  --off-white: #f7f7f7;
  --light-grey: #ececec;
  --dark-grey: #2a2a2a;
  --border: rgba(247, 247, 247, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--near-black);
  color: var(--off-white);
  font-family: "Inter", Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.glow {
  position: fixed;
  inset: -20% -20% auto -20%;
  height: 60vh;
  background: radial-gradient(closest-side, rgba(255, 45, 51, 0.28), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand {
  margin-bottom: 32px;
}

.logo {
  height: 72px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.hero {
  width: 100%;
}

.headline {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}

.subheading {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: rgba(247, 247, 247, 0.72);
  margin: 0 0 40px;
  font-weight: 500;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  min-width: 84px;
  backdrop-filter: blur(6px);
}

.countdown-value {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--flipside-red);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown-label {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 247, 247, 0.55);
}

.countdown-date {
  color: rgba(247, 247, 247, 0.5);
  font-size: 0.9rem;
  margin: 0 0 56px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  width: 100%;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--off-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--flipside-red);
  color: var(--flipside-red);
  background: rgba(255, 45, 51, 0.08);
}

.icon {
  width: 18px;
  height: 18px;
}

.form-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 48px;
}

@media (min-width: 720px) {
  .form-section {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

.form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.form-card h2 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.form-card p {
  color: rgba(247, 247, 247, 0.6);
  font-size: 0.9rem;
  margin: 0 0 20px;
  line-height: 1.5;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input,
.form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--off-white);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(247, 247, 247, 0.4);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--flipside-red);
  background: rgba(255, 255, 255, 0.08);
}

.form button {
  margin-top: 4px;
  background: var(--flipside-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.form button:hover {
  background: var(--flipside-red-dark);
}

.form button:active {
  transform: scale(0.98);
}

.form-status {
  min-height: 1.2em;
  font-size: 0.85rem;
  margin: 10px 0 0;
  color: var(--flipside-red);
}

.form-status.success {
  color: #4ade80;
}

.footer {
  color: rgba(247, 247, 247, 0.4);
  font-size: 0.8rem;
  margin-top: 8px;
}

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