:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-border: rgba(255, 255, 255, 0.1);
  --text: #f4efe8;
  --muted: #b7afa4;
  --accent: #eb6400;
  --accent-strong: #ff7a16;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, rgba(235, 100, 0, 0.2), transparent 32%), radial-gradient(circle at right center, rgba(235, 100, 0, 0.08), transparent 28%), #050505;
  color: #f4efe8;
}

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

.shell {
  width: min(980px, 100%);
}

.wordmark {
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 2vw, 18px);
  line-height: 0.82;
  margin-bottom: 36px;
  text-transform: none;
  user-select: none;
}

.wordmark-main,
.wordmark-sub {
  color: #eb6400;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.wordmark-main {
  font-size: clamp(6rem, 25vw, 13rem);
}

.wordmark-sub {
  font-size: clamp(2rem, 7vw, 4.5rem);
  padding-bottom: 0.7rem;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 28px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.panel p {
  margin: 0 0 18px;
  color: #b7afa4;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

input,
button {
  border: 0;
  border-radius: 14px;
  min-height: 56px;
  font-size: 1rem;
}

input {
  width: 100%;
  padding: 0 18px;
  color: #f4efe8;
  background: rgba(255, 255, 255, 0.06);
  outline: 1px solid transparent;
  transition: outline-color 0.2s ease, background 0.2s ease;
}

input:focus {
  outline-color: rgba(255, 122, 22, 0.8);
  background: rgba(255, 255, 255, 0.09);
}

input::placeholder {
  color: #8f8579;
}

button {
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  color: #140700;
  background: linear-gradient(135deg, #eb6400, #ff7a16);
  transition: transform 0.18s ease, filter 0.18s ease;
}

button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

button:active {
  transform: translateY(0);
}

.status {
  min-height: 24px;
  margin-top: 14px;
  color: #b7afa4;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.status a {
  color: #eb6400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.status a:visited {
  color: #eb6400;
}

.status a:hover {
  color: #ff7a16;
}

@media (max-width: 720px) {
  .wordmark {
    gap: 8px;
    margin-bottom: 28px;
  }

  .wordmark-sub {
    padding-bottom: 0.38rem;
  }

  form {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }
}