/* Shared chrome: /app and /insights — keep nav + hero in sync (see CLAUDE.md). */
.nav {
  background: rgba(255, 255, 255, 0.97);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo-type {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #160f0a;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3d3530;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}
.nav-btn:hover {
  border-color: #160f0a;
  color: #160f0a;
  transform: translateY(-1px);
}
.nav-btn.active {
  background: #e8440a;
  color: #fff;
  border-color: #e8440a;
}
/* Keep Phosphor icons visible on orange active pill */
.nav-btn.active iconify-icon {
  color: #fff !important;
}
/* Primary app areas — subtle group (Generator + Insights) */
.nav-app-pair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .nav-app-pair {
    width: 100%;
    justify-content: flex-end;
  }
}
a.nav-alerts-pill,
button.nav-alerts-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #edfdf4;
  border: 1px solid #bbf7d0;
  color: #1a7a4a;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}
button.nav-alerts-pill {
  cursor: pointer;
  font: inherit;
}
a.nav-alerts-pill:hover,
button.nav-alerts-pill:hover {
  transform: translateY(-1px);
  border-color: #1a7a4a;
}

.hero {
  background: #fff;
  border-bottom: 1.5px solid #eae4dc;
  padding: 20px 28px;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #e8440a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-title {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #160f0a;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #8a7e78;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .nav {
    padding: 0 16px;
  }
  .hero {
    padding: 20px 16px;
  }
}
