@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@400;700;800&display=swap");

body {
  margin: 0;
}

.forge-root {
  background: #0a0a0f;
  color: #e8e6e0;
  font-family: "Syne", sans-serif;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

.forge-root * {
  box-sizing: border-box;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 0.5px solid rgba(127, 127, 255, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo-text {
  font-size: 13px;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.08em;
  color: rgba(200, 200, 220, 0.6);
}

.nav-link {
  font-size: 12px;
  font-family: "Space Mono", monospace;
  color: rgba(200, 200, 220, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #7f77dd;
}

.hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 0.5px solid rgba(127, 127, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(127, 127, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 127, 255, 1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(127, 127, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f0eee8;
  margin: 0 0 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: rgba(127, 127, 255, 0.8);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(200, 200, 220, 0.6);
  max-width: 560px;
  margin: 0 0 2.5rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f0eee8;
  line-height: 1;
}

.stat-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(200, 200, 220, 0.4);
  text-transform: uppercase;
}

.packages {
  padding: 4rem 3rem;
}

.section-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(127, 127, 255, 0.6);
  margin-bottom: 2.5rem;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(127, 127, 255, 0.12);
  border: 1px solid rgba(127, 127, 255, 0.12);
}

.pkg-card {
  background: #0a0a0f;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.2s;
  position: relative;
}

.pkg-card:hover {
  background: #10101a;
}

.pkg-card:hover .pkg-arrow {
  transform: translate(3px, -3px);
  color: rgba(127, 127, 255, 0.9);
}

.pkg-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.pkg-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.pkg-arrow {
  font-size: 18px;
  color: rgba(127, 127, 255, 0.3);
  transition:
    transform 0.2s,
    color 0.2s;
  font-family: monospace;
}

.pkg-scope {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  color: rgba(127, 127, 255, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.pkg-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f0eee8;
  margin: 0 0 0.25rem;
}

.pkg-tagline {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: rgba(127, 127, 255, 0.6);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pkg-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(200, 200, 220, 0.5);
  margin: 0 0 1.25rem;
}

.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  padding: 3px 8px;
  border: 0.5px solid rgba(127, 127, 255, 0.2);
  color: rgba(127, 127, 255, 0.5);
  letter-spacing: 0.03em;
}

.footer {
  padding: 3rem;
  border-top: 0.5px solid rgba(127, 127, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-left {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: rgba(200, 200, 220, 0.3);
  line-height: 1.8;
}

.footer-left a {
  color: rgba(127, 127, 255, 0.6);
  text-decoration: none;
}

.footer-left a:hover {
  color: rgba(127, 127, 255, 0.9);
}

.footer-right {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: rgba(200, 200, 220, 0.25);
}

/* Animated letter I SVG */
.logo-svg {
  width: 24px;
  height: 24px;
}
