/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10, 9, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--amber);
  letter-spacing: 0.5px;
}
svg.logo-icon {
  width: 32px;
  height: 36px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text);
  opacity: 0.6;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--amber);
}
.nav-app-link {
  font:
    600 0.72rem "JetBrains Mono",
    monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border: 1px solid rgba(240, 160, 48, 0.35);
  padding: 9px 18px;
  transition: all 0.2s;
}
.nav-app-link:hover {
  background: rgba(240, 160, 48, 0.08);
  border-color: var(--amber);
}
.nav-cta {
  background: var(--amber);
  color: #000;
  border: none;
  padding: 10px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}
.nav-cta:hover {
  background: #ffc060;
  transform: translateY(-1px);
}

/* HERO */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 132px 48px 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  justify-self: center;
}
.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.hero-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 900px;
  margin-bottom: 32px;
  opacity: 0;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  opacity: 0;
}
.hero-badge {
  font:
    500 0.6rem "JetBrains Mono",
    monospace;
  color: var(--muted);
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.btn-primary {
  background: var(--amber);
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(240, 160, 48, 0.25);
  transition:
    background 0.2s,
    transform 0.1s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  background: #ffc060;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 160, 48, 0.4);
}

.btn-ghost {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
}

.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  opacity: 0;
}
.stat-val {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

