* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(ellipse at top, #1a1a3e 0%, #0a0a1f 50%, #000 100%);
  color: #e8e8f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow-x: hidden;
}

.content {
  text-align: center;
  z-index: 1;
  max-width: 520px;
}

/* Logo */
.logo {
  font-size: 2.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #a8b5ff 0%, #fff 50%, #c8a8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sublogo {
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: #8a8aa8;
  margin-bottom: 1rem;
  margin-left: 0.5em; /* offset to balance letter-spacing */
}

.tagline {
  color: #8a8aa8;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Links */
.links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.links a {
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(168, 181, 255, 0.3);
  border-radius: 999px;
  color: #c8d0ff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.02);
  display: inline-flex;
  align-items: center;
}

.links a:hover {
  border-color: rgba(168, 181, 255, 0.8);
  background: rgba(168, 181, 255, 0.1);
  transform: translateY(-2px);
}

footer {
  position: fixed;
  bottom: 1.5rem;
  font-size: 0.75rem;
  color: #4a4a6a;
  letter-spacing: 0.1em;
  z-index: 1;
}

.icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

/* About page */
.about-page {
  justify-content: flex-start;
  padding-top: 4rem;
}

.nav {
  position: fixed;
  top: 1.5rem;
  left: 2rem;
  z-index: 2;
}

.nav a {
  color: #8a8aa8;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav a:hover { color: #c8d0ff; }

.about-content {
  max-width: 600px;
  text-align: center;
  z-index: 1;
  padding: 2rem 0 4rem;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(168, 181, 255, 0.3);
}

.about-content h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.role {
  color: #8a8aa8;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.about-content section {
  margin-bottom: 2em;
}

.about-content section p {
  color: #c0c0d0;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: left;
  font-weight: 300;
}

/* Products page */
.products-page {
  justify-content: flex-start;
  padding-top: 4rem;
}

.products-content {
  max-width: 600px;
  text-align: center;
  z-index: 1;
  padding: 2rem 0 4rem;
}

.products-content section {
  margin-top: 2rem;
  padding: 1rem;
  border: 2px solid rgba(168, 181, 255, 0.3);
  background: rgba(168, 181, 255, 0.08);
}

.products-content h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.products-content h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
}

.products-content .product-type {
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.products-content section p {
  color: #c0c0d0;
  line-height: 1.7;
  margin: 2rem 0 1.2rem;
  text-align: left;
  font-weight: 300;
  text-align: center;
}

.products-content section img {
  max-width: 100%;
  height: auto;
  display: block;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.9rem;
  background: #24292f;
  border-color: #24292f;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.store-button img {
  width: 24px;
  height: 24px;
}

.store-button:hover {
  background: rgba(168, 181, 255, 0.25);
  border-color: rgba(168, 181, 255, 0.8);
  transform: translateY(-2px);
}