:root {
  --orange: #f97316;
  --orange-strong: #c2410c;
  --orange-light: #ffedd5;
  --ink: #172033;
  --muted: #667085;
  --line: #fed7aa;
  --white: #ffffff;
  --page: #fff7ed;
}

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

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0) 46%),
    var(--page);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.access-panel {
  width: min(100%, 760px);
  min-height: 360px;
  display: grid;
  grid-template-columns: 170px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.1);
}

.accent-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--orange);
  padding: 28px;
}

.accent-line {
  width: 48px;
  height: 4px;
  background: var(--white);
  border-radius: 999px;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 58px);
}

.label {
  color: var(--orange-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  max-width: 480px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 780;
  line-height: 1.04;
  margin-bottom: 18px;
}

.description {
  max-width: 430px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 30px;
}

.action-button {
  width: fit-content;
  min-width: 180px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.action-button:hover {
  background: var(--orange-strong);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.25);
  transform: translateY(-1px);
}

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

@media (max-width: 680px) {
  .page-shell {
    align-items: stretch;
    padding: 16px;
  }

  .access-panel {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .accent-column {
    min-height: 92px;
    flex-direction: row;
    align-items: center;
    padding: 22px;
  }

  .content {
    padding: 30px 24px 34px;
  }

  .action-button {
    width: 100%;
  }
}
