:root {
  --navy: #071523;
  --navy-deep: #030912;
  --navy-soft: rgba(7, 21, 35, 0.86);
  --gold: #d9af62;
  --gold-light: #f0c978;
  --white: #f7f2ea;
  --muted: rgba(247, 242, 234, 0.74);
  --line: rgba(217, 175, 98, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--navy-deep);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 28%, rgba(217, 175, 98, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(2, 7, 12, 0.55), rgba(2, 7, 12, 0.15) 52%, rgba(2, 7, 12, 0.58)),
    url("/img/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.brand-panel {
  max-width: 780px;
  text-align: center;
  padding: clamp(18px, 3vw, 36px);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.mark {
  width: 104px;
  height: 104px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 48px;
  background: rgba(7, 21, 35, 0.26);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.eyebrow,
.login-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 8.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: #f5ddb2;
}

.tagline {
  margin: 24px auto 0;
  max-width: 620px;
  color: var(--gold-light);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-transform: uppercase;
}

.features {
  margin-top: clamp(36px, 7vw, 92px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.feature {
  min-height: 92px;
  padding: 10px 8px;
  border-left: 1px solid var(--line);
}

.feature:first-child {
  border-left: 0;
}

.feature span {
  display: block;
  color: var(--gold-light);
  font-size: 28px;
  margin-bottom: 12px;
}

.feature p {
  margin: 0;
  color: var(--white);
  font-size: 0.76rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.login-card {
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(217, 175, 98, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(10, 28, 45, 0.94), rgba(4, 13, 23, 0.88));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.login-card h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  color: #f5ddb2;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-copy {
  margin: 16px 0 32px;
  color: var(--muted);
  line-height: 1.7;
}

form {
  display: grid;
  gap: 13px;
}

label {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  height: 54px;
  margin-bottom: 10px;
  padding: 0 16px;
  border: 1px solid rgba(247, 242, 234, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  outline: none;
}

input::placeholder {
  color: rgba(247, 242, 234, 0.45);
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 175, 98, 0.14);
}

select {
  color: rgba(247, 242, 234, 0.86);
}

.form-row {
  margin: 2px 0 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 0.88rem;
}

.check {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.check input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--gold);
}

a {
  color: var(--gold-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  height: 58px;
  border: 0;
  border-radius: 8px;
  color: #071523;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(217, 175, 98, 0.22);
}

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

.owner-link {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 242, 234, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand-panel,
  .login-card {
    margin: 0 auto;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 22px;
    background-position: 40% center;
  }

  h1 {
    font-size: 3.3rem;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(3),
  .feature:nth-child(5) {
    border-left: 0;
  }

  .feature:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .form-row,
  .owner-link {
    flex-direction: column;
    align-items: flex-start;
  }
}
