:root {
  --accent: #c4a574;
  --surface: #0f1c16;
  --text: #f5f0e8;
  --bg: #1a2e24;
  --label: #c4a574;
  --error: #e07a5f;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(196, 165, 116, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(40, 90, 70, 0.45), transparent 50%),
    linear-gradient(160deg, var(--surface) 0%, var(--bg) 55%, #122018 100%);
  background-attachment: fixed;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: var(--accent);
  text-decoration: none;
}

main {
  padding: 0 clamp(1rem, 4vw, 3rem) 3rem;
}

.hero {
  min-height: calc(100vh - 7rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  line-height: 0.95;
  color: var(--accent);
}

.hero h1,
.panel h1,
.card-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.lead {
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #1a1208;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 240, 232, 0.35);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.pass-mock {
  width: min(100%, 320px);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(196, 165, 116, 0.35), transparent 45%),
    linear-gradient(200deg, #243d32, #101a14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  animation: rise 0.9s ease both;
}

.pass-mock-brand {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

.pass-mock-label {
  opacity: 0.75;
  font-size: 0.95rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  animation: rise 0.7s ease both;
}

.cta-row .btn {
  animation: rise 0.85s ease both;
}

.cta-row .btn:nth-child(2) {
  animation-delay: 0.08s;
}

.panel,
.card-page {
  max-width: 34rem;
  padding: 2rem 0 3rem;
}

.form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form input {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(245, 240, 232, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}

.form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.error {
  color: var(--error);
  font-weight: 600;
}

.meta {
  margin-top: 1.25rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stats div {
  padding: 1rem 0;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  animation: rise 0.6s ease both;
}

.stats div:nth-child(2) {
  animation-delay: 0.06s;
}

.stats div:nth-child(3) {
  animation-delay: 0.12s;
}

.stats dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0 0 0.35rem;
}

.stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.site-footer {
  padding: 1.5rem clamp(1rem, 4vw, 3rem) 2rem;
  opacity: 0.55;
  font-size: 0.85rem;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-visual {
    order: -1;
  }

  .pass-mock {
    width: min(100%, 260px);
    aspect-ratio: 5 / 3;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
