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

:root {
  --font-sans: 'Juxel', 'Inter', system-ui, sans-serif;
  --color-main: #433d3a;
  --color-floating: #191614;
  --text-primary: #f5f5f5;
  --text-secondary: #a3a3a3;
  --border-subtle: rgba(255, 255, 255, 0.04);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

.landing-root {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.panel-floating {
  background: var(--color-floating);
  border: 1px solid var(--border-subtle);
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  height: 1px;
}

.landing-card {
  width: min(48rem, 100%);
  text-align: center;
  padding: 2rem;
}

h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 6vw, 3.25rem);
}

p {
  margin: 1.5rem 0 0;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  color: var(--text-secondary);
}

.btn-primary {
  margin: 2.5rem auto 0;
  width: min(28rem, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url('../public/button.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 600 / 120;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
}

.btn-primary:hover {
  background-image: url('../public/button_highlighted.png');
}
