:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #08090d;
  color: #f6f1df;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(246, 200, 97, 0.12), transparent 16rem),
    radial-gradient(circle at 18% 18%, rgba(38, 196, 181, 0.12), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(238, 83, 92, 0.11), transparent 22rem),
    #08090d;
}

body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 68%);
}

a {
  color: inherit;
  text-decoration: none;
}

#aura {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
}

.mark,
.site-header a {
  color: rgba(246, 241, 223, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

.mark {
  color: #fff8df;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(246, 241, 223, 0.12);
  background: rgba(8, 9, 13, 0.28);
  backdrop-filter: blur(14px);
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  border-color: rgba(111, 224, 205, 0.55);
  color: #fff8df;
}

.site-header .contact {
  color: #08090d;
  background: #fff8df;
}

.identity {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 68rem);
  padding: 18vh 0 10vh;
  text-align: center;
  text-shadow: 0 0 2rem rgba(246, 200, 97, 0.22);
}

h1 {
  margin: 0;
  color: #fff8df;
  font-size: clamp(4.5rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.blog-panel {
  width: min(100%, 42rem);
  margin: clamp(2.5rem, 8vh, 6rem) auto 0;
  text-align: left;
  text-shadow: none;
}

.blog-heading {
  margin-bottom: 0.9rem;
}

h2 {
  margin: 0;
  color: rgba(255, 248, 223, 0.92);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: lowercase;
}

.blog-types {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.chip {
  min-height: 2rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  color: rgba(246, 241, 223, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
  border-bottom-color: rgba(111, 224, 205, 0.72);
  color: #fff8df;
}

.empty-state {
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(246, 241, 223, 0.12);
  color: rgba(246, 241, 223, 0.54);
  font-size: 0.84rem;
  font-weight: 800;
}

.art-panel {
  width: min(100%, 42rem);
  margin: 1rem auto 0;
  text-align: left;
  text-shadow: none;
}

.art-panel h2 {
  margin-bottom: 0.75rem;
}

@media (max-width: 42rem) {
  body {
    overflow: auto;
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    gap: 0.35rem;
  }

  .site-header nav a {
    padding: 0.45rem 0.55rem;
    font-size: 0.75rem;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .identity {
    padding-top: 9rem;
    text-align: center;
  }

  .blog-types {
    gap: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #aura {
    opacity: 0.45;
  }
}
