:root {
  --bg: #0f0b16;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f7f0ff;
  --muted: #c9badb;
  --accent: #f7d66b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 15%, rgba(155, 92, 255, 0.26), transparent 32rem),
    radial-gradient(circle at 80% 5%, rgba(247, 214, 107, 0.12), transparent 28rem),
    linear-gradient(180deg, #0f0b16 0%, #140f1d 55%, #0c0911 100%);
  min-height: 100vh;
}

.page {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 32px;
}

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 0;
}

.logo-mark {
  width: 512px;
  height: 512px;
  object-fit: contain;
  margin-bottom: 24px;
  border-radius: 28px;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.35));
}

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.intro {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #160b22;
  background: linear-gradient(135deg, var(--accent), #fff1a6);
}

.secondary {
  color: var(--text);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
}

.card {
  margin: 22px 0;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.project-card {
  background:
    linear-gradient(135deg, rgba(155, 92, 255, 0.18), rgba(247, 214, 107, 0.08)),
    var(--card);
}

.card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.status {
  margin-top: 22px;
  color: var(--accent) !important;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  color: var(--text);
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 160ms ease, background 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

footer {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: rgba(247, 240, 255, 0.62);
  font-size: 0.92rem;
}

@media (max-width: 620px) {
  .page {
    padding-top: 32px;
  }

  .hero {
    min-height: 68vh;
  }

  .logo-mark {
    width: 120px;
    height: 120px;
  }

  .button {
    width: 100%;
  }
}
