:root {
  --bg: #060606;
  --surface: rgba(18, 18, 18, 0.72);
  --border: rgba(255, 255, 255, 0.18);
  --text: #f4f4f4;
  --muted: #bebebe;
  --accent: #ffffff;
  --maxw: 860px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(90rem 60rem at 20% -10%, #1a1a1a 0%, transparent 45%),
              radial-gradient(65rem 55rem at 95% 10%, #0f0f0f 0%, transparent 50%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, transparent 45%, rgba(255, 255, 255, 0.04) 50%, transparent 55%);
  opacity: 0.35;
}

.site {
  position: relative;
  width: min(100% - 2.4rem, var(--maxw));
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
}

.hero {
  text-align: center;
  margin-bottom: 1.4rem;
  animation: rise 700ms ease-out;
}

.logo {
  width: clamp(160px, 28vw, 260px);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.lead {
  width: min(100%, 700px);
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  margin-top: 1rem;
  backdrop-filter: blur(8px);
  animation: rise 800ms ease-out;
}

.panel h2 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel p {
  margin: 0.5rem 0;
  color: #dbdbdb;
}

.project h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  color: #070707;
  background: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, opacity 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  opacity: 0.9;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .site {
    width: min(100% - 1.2rem, var(--maxw));
    padding-top: 2rem;
    padding-bottom: 2.4rem;
  }

  .panel h2 {
    letter-spacing: 0.05em;
  }
}
