:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff3ea;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --surface: #ffffff;
  --page: #fffaf6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.08), transparent 42%),
    var(--page);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  width: min(100%, 440px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
  padding: 36px;
  text-align: center;
}

.brand-mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1px solid var(--line);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

.eyebrow {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

h1 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 750;
  line-height: 1.15;
  margin-bottom: 12px;
}

.description {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 320px;
}

.status {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  color: var(--muted);
  background: var(--orange-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.14);
}

.primary-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
  transform: translateY(-1px);
}

.primary-button:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.32);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .redirect-page {
    padding: 16px;
  }

  .redirect-card {
    padding: 28px 22px;
  }

  h1 {
    font-size: 1.75rem;
  }
}
