@font-face {
  font-family: 'Antonio';
  src: url('assets/fonts/antonio/Antonio-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('assets/fonts/roboto-condensed/RobotoCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('assets/fonts/roboto-condensed/RobotoCondensed-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('assets/fonts/roboto-condensed/RobotoCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #09090b;
  --hero-image: url("assets/images/bg.jpg");
  --panel: #18181b;
  --panel-border: #27272a;
  --text: #ffffff;
  --muted: #a1a1aa;
  --primary: #f59e0b;
  --primary-soft: rgba(245, 158, 11, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(9, 9, 11, 0.92), rgba(24, 24, 27, 0.88)),
    radial-gradient(1000px 500px at 50% -10%, var(--primary-soft), transparent),
    var(--hero-image);
  background-size: cover, auto, cover;
  background-position: center, center top, center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text);
}

.page {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(760px, 100%);
  background: linear-gradient(180deg, rgba(39, 39, 42, 0.35), rgba(24, 24, 27, 0.95));
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.95;
}

.brand-wordmark {
  width: 160px;
  max-width: 60vw;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  color: var(--primary);
}

h1 {
  margin: 0;
  line-height: 1.15;
  font-family: 'Antonio', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.lead {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

.actions {
  margin-top: 20px;
}

.portal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  color: #09090b;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  border: 1px solid rgba(251, 191, 36, 0.7);
  box-shadow: 0 7px 18px rgba(245, 158, 11, 0.2);
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.portal-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.26);
  filter: brightness(1.03);
  text-decoration: none;
}

.portal-button:focus-visible {
  outline: 2px solid #fcd34d;
  outline-offset: 2px;
}

.notice {
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.92rem;
}

.meta {
  margin-top: 22px;
  display: grid;
  gap: 6px;
  color: #d4d4d8;
  font-size: 0.94rem;
}

.meta p {
  margin: 0;
}

a {
  color: #fcd34d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0 24px 20px;
  color: #71717a;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  text-align: center;
}
